Skip to content

Commit ad13f39

Browse files
author
Jack Pope
committed
Fix lint errors
1 parent ec4149a commit ad13f39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-art/src/__tests__/ReactART-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ describe('ReactART', () => {
136136
});
137137

138138
it('should have the correct lifecycle state', async () => {
139-
let instance = <TestComponent />;
139+
const instance = <TestComponent />;
140140
const root = ReactDOMClient.createRoot(container);
141141
await act(() => {
142142
root.render(instance);
@@ -147,7 +147,7 @@ describe('ReactART', () => {
147147
});
148148

149149
it('should render a reasonable SVG structure in SVG mode', async () => {
150-
let instance = <TestComponent />;
150+
const instance = <TestComponent />;
151151
const root = ReactDOMClient.createRoot(container);
152152
await act(() => {
153153
root.render(instance);

0 commit comments

Comments
 (0)