Skip to content

Commit 16aebdc

Browse files
committed
Naming in test
1 parent 0b93205 commit 16aebdc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/tests/src/jsx_preserve_test.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ let ComponentWithOptionalProps = {
197197
make: Jsx_preserve_test$ComponentWithOptionalProps
198198
};
199199

200-
let _element = <Jsx_preserve_test$ComponentWithOptionalProps
200+
let _optional_props = <Jsx_preserve_test$ComponentWithOptionalProps
201201
i={1}
202202
s="test"
203203
element={<div />}
@@ -227,6 +227,6 @@ export {
227227
_escaped_jsx_prop,
228228
_large_component,
229229
ComponentWithOptionalProps,
230-
_element,
230+
_optional_props,
231231
}
232232
/* _single_element_child Not a pure module */

tests/tests/src/jsx_preserve_test.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,4 @@ module ComponentWithOptionalProps = {
125125
) => React.null
126126
}
127127

128-
let _element = <ComponentWithOptionalProps i=1 s="test" element={<div />} />
128+
let _optional_props = <ComponentWithOptionalProps i=1 s="test" element={<div />} />

0 commit comments

Comments
 (0)