Skip to content

Commit

Permalink
Fixed failing unit test - updated columnSizes object
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmajchrak committed Dec 19, 2023
1 parent 55b7f78 commit 2a110c9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ let fixture: ComponentFixture<ItemEditBitstreamComponent>;
const columnSizes = new ResponsiveTableSizes([
new ResponsiveColumnSizes(2, 2, 3, 4, 4),
new ResponsiveColumnSizes(2, 3, 3, 3, 3),
new ResponsiveColumnSizes(2, 2, 2, 2, 2),
new ResponsiveColumnSizes(6, 5, 4, 3, 3)
new ResponsiveColumnSizes(1, 1, 1, 1, 1),
new ResponsiveColumnSizes(5, 4, 3, 2, 2),
new ResponsiveColumnSizes(2, 2, 2, 2, 2)
]);

const format = Object.assign(new BitstreamFormat(), {
Expand Down

0 comments on commit 2a110c9

Please sign in to comment.