Skip to content

Commit 1ef2b38

Browse files
authored
lint
1 parent 9c63b45 commit 1ef2b38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/table/table-tbody-transition.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('table body transition', () => {
4444
expect(wrapper.find('tbody').exists()).toBe(true)
4545
expect(wrapper.find('tbody').is('tbody')).toBe(true)
4646
expect(wrapper.find('transition-group')).toBe(true)
47-
expect(wrapper.find('transition-group').is('tbody').toBe(true)
47+
expect(wrapper.find('transition-group').is('tbody')).toBe(true)
4848
})
4949

5050
it('tbody should be a transition-group component when tbody-transition-handlers set', async () => {
@@ -69,6 +69,6 @@ describe('table body transition', () => {
6969
expect(wrapper.is('table')).toBe(true)
7070
expect(wrapper.find('tbody').exists()).toBe(true)
7171
expect(wrapper.find('transition-group')).toBe(true)
72-
expect(wrapper.find('transition-group').is('tbody').toBe(true)
72+
expect(wrapper.find('transition-group').is('tbody')).toBe(true)
7373
})
7474
})

0 commit comments

Comments
 (0)