From 3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Fri, 5 Nov 2021 01:33:09 -0700 Subject: :camera: Snapshots --- integration/snapshots/string-escapes.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'integration/snapshots/string-escapes.js') diff --git a/integration/snapshots/string-escapes.js b/integration/snapshots/string-escapes.js index 4a5c82b05..af9c53abf 100644 --- a/integration/snapshots/string-escapes.js +++ b/integration/snapshots/string-escapes.js @@ -337,10 +337,10 @@ const jsxVariants = jsx(JSXFrag, { data: "\v" }, undefined, false, undefined, this), jsx("div", { - data: "\u2028" + data: "\\u2028" }, undefined, false, undefined, this), jsx("div", { - data: "\u2029" + data: "\\u2029" }, undefined, false, undefined, this), jsx("div", { data: "😊" @@ -392,11 +392,11 @@ const jsxVariants = jsx(JSXFrag, { jsx("div", { children: "\v" }, undefined, false, undefined, this), - jsx("div", {}, "\u2028", false, undefined, this), + jsx("div", {}, "\\u2028", false, undefined, this), jsx("div", { children: "\u2028" }, undefined, false, undefined, this), - jsx("div", {}, "\u2029", false, undefined, this), + jsx("div", {}, "\\u2029", false, undefined, this), jsx("div", { children: "\u2029" }, undefined, false, undefined, this), -- cgit v1.2.3