Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Komarov committed Feb 14, 2023
1 parent 180a27a commit c3fe92f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/Components/NoDataRow/NoDataRow.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ it('renders without crashing', () => {
it('custom colspan for cell', () => {
const wrapper = mount(<NoDataRow {...props} childComponents={{
noDataCell: {
elementAttributes:() => ({
elementAttributes: () => ({
colSpan: 100
})
}
Expand All @@ -32,4 +32,4 @@ it('custom colspan for cell', () => {
});
expect(wrapper.find('.ka-no-data-cell').exists()).toBeTruthy();
expect(wrapper.find('.ka-no-data-cell').prop('colSpan')).toBe(100);
});
});

0 comments on commit c3fe92f

Please sign in to comment.