From ab49f95ef25a49f5d8a53bc8242ee490b15a5b74 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sat, 10 Dec 2022 00:18:59 -0800 Subject: :camera: --- test/snapshots/react-context-value-func.debug.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/snapshots/react-context-value-func.debug.tsx') diff --git a/test/snapshots/react-context-value-func.debug.tsx b/test/snapshots/react-context-value-func.debug.tsx index 6ebe7c0ce..e3ef03a82 100644 --- a/test/snapshots/react-context-value-func.debug.tsx +++ b/test/snapshots/react-context-value-func.debug.tsx @@ -14,22 +14,22 @@ const ContextProvider = ({ children }) => { return jsx(Context.Provider, { value: cb, children: children(foo) - }, undefined, false, undefined, this); + }); }; const ContextValue = ({}) => jsx(Context.Consumer, { children: (foo) => { if (foo) return jsx("div", { children: "Worked!" - }, undefined, false, undefined, this); + }); throw `Value "${foo}"" should be true`; } -}, undefined, false, undefined, this); +}); const TestComponent = () => jsx(ContextProvider, { - children: jsx(ContextValue, {}, undefined, false, undefined, this) -}, undefined, false, undefined, this); + children: jsx(ContextValue, {}) +}); export function test() { - const foo = jsx(TestComponent, {}, undefined, false, undefined, this); + const foo = jsx(TestComponent, {}); return testDone(import.meta.url); } -- cgit v1.2.3