Skip to content

Commit ba4cf62

Browse files
committed
Fix linting error
1 parent 3a0b71a commit ba4cf62

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/__tests__/Date/DayRange.test.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { render } from '@testing-library/react-native'
22
import DayRange from '../../Date/DayRange'
33

44
it('renders DayRange', () => {
5-
const { toJSON } = render(<DayRange inRange leftCrop rightCrop selectColor="blue" />)
5+
const { toJSON } = render(
6+
<DayRange inRange leftCrop rightCrop selectColor="blue" />
7+
)
68
expect(toJSON()).toMatchSnapshot()
79
})

0 commit comments

Comments
 (0)