Skip to content

Commit a5bc1d6

Browse files
committed
Update tests per default fallback value
1 parent 420f73c commit a5bc1d6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

test/jasmine/tests/icicle_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ describe('Test icicle texttemplate without `values` should work at root level:',
931931
[
932932
'%{percentParent} of %{parent}',
933933
[
934-
'%{percentParent} of %{parent}',
934+
' of ',
935935
'100% of Seth',
936936
'33% of Eve',
937937
'17% of Eve',
@@ -957,7 +957,7 @@ describe('Test icicle texttemplate without `values` should work at root level:',
957957
[
958958
'label: Eve',
959959
'text: fourteen',
960-
'value: %{value}', // N.B. there is no `values` array
960+
'value: ', // N.B. there is no `values` array
961961
'17% of Eve',
962962
'17% of Eve',
963963
'17% of Eve',
@@ -1085,7 +1085,7 @@ describe('Test icicle texttemplate with *total* `values` should work at root lev
10851085
[
10861086
'%{percentParent} of %{parent}',
10871087
[
1088-
'%{percentParent} of %{parent}',
1088+
' of ',
10891089
'22% of Eve',
10901090
'18% of Eve',
10911091
'9% of Eve',

test/jasmine/tests/sunburst_test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,7 +2293,7 @@ describe('Test sunburst texttemplate without `values` should work at root level:
22932293
[
22942294
'%{percentParent} of %{parent}',
22952295
[
2296-
'%{percentParent} of %{parent}',
2296+
' of ',
22972297
'100% of Seth',
22982298
'33% of Eve',
22992299
'17% of Eve',
@@ -2319,7 +2319,7 @@ describe('Test sunburst texttemplate without `values` should work at root level:
23192319
[
23202320
'label: Eve',
23212321
'text: fourteen',
2322-
'value: %{value}', // N.B. there is no `values` array
2322+
'value: ', // N.B. there is no `values` array
23232323
'17% of Eve',
23242324
'17% of Eve',
23252325
'17% of Eve',
@@ -2447,7 +2447,7 @@ describe('Test sunburst texttemplate with *total* `values` should work at root l
24472447
[
24482448
'%{percentParent} of %{parent}',
24492449
[
2450-
'%{percentParent} of %{parent}',
2450+
' of ',
24512451
'22% of Eve',
24522452
'18% of Eve',
24532453
'9% of Eve',
@@ -2601,7 +2601,7 @@ describe('Test sunburst texttemplate with *remainder* `values` should work at ro
26012601
[
26022602
'%{percentParent} of %{parent}',
26032603
[
2604-
'%{percentParent} of %{parent}',
2604+
' of ',
26052605
'20% of Eve',
26062606
'12% of Eve',
26072607
'6% of Eve',

0 commit comments

Comments
 (0)