Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
tintinthong committed Apr 8, 2024
1 parent e33ea62 commit 5739ccb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ module('Integration | ResizablePanelGroup', function (hooks) {
this.renderController.containerStyle =
'max-height: 100%; width: 100px; height: 318px;';
await renderVerticalResizablePanelGroup(this.renderController);
assert.hasNumericStyle('.panel-0-content', 'height', (318 - 18) * 0.6, 1);
assert.hasNumericStyle('.panel-1-content', 'height', (318 - 18) * 0.4, 1);
assert.hasNumericStyle('.panel-0-content', 'height', 300 * 0.6, 1);
assert.hasNumericStyle('.panel-1-content', 'height', 300 * 0.4, 1);
});

test('it can lay out panels vertically (length specified)', async function (this: MyTestContext, assert) {
Expand Down

0 comments on commit 5739ccb

Please sign in to comment.