Skip to content

Commit

Permalink
Update splom_test innerSubplotNodeCnt
Browse files Browse the repository at this point in the history
  • Loading branch information
my-tien committed Mar 15, 2024
1 parent 8cbfb39 commit 16b6139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jasmine/tests/splom_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ describe('Test splom interactions:', function() {
.then(function() {
_assert({
subplotCnt: 25,
innerSubplotNodeCnt: 18,
innerSubplotNodeCnt: 19,
hasSplomGrid: false,
bgCnt: 0
});
Expand Down Expand Up @@ -857,7 +857,7 @@ describe('Test splom interactions:', function() {
// new subplots though have reduced number of children.
innerSubplotNodeCnt: function(d) {
var p = d.match(SUBPLOT_PATTERN);
return (p[1] > 5 || p[2] > 5) ? 4 : 18;
return (p[1] > 5 || p[2] > 5) ? 4 : 19;
},
hasSplomGrid: true,
bgCnt: 0
Expand Down

0 comments on commit 16b6139

Please sign in to comment.