Skip to content

Commit 2887fd4

Browse files
committed
Fix fixtures.
1 parent 0738d63 commit 2887fd4

File tree

1 file changed

+3
-3
lines changed
  • test/fixtures/19-transpile-require-default

1 file changed

+3
-3
lines changed

test/fixtures/19-transpile-require-default/after.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ const styled_default = require("styled-components/no-parser");
33
const TestNormal = styled.div.withConfig({
44
displayName: "before__TestNormal",
55
componentId: "y0c69d-0"
6-
})([["{width: 100%;}"]]);
6+
})([["{width:100%;}"]]);
77

88
const Test = styled_default.default.div.withConfig({
99
displayName: "before__Test",
1010
componentId: "y0c69d-1"
11-
})([["{width: 100%;}"]]);
11+
})([["{width:100%;}"]]);
1212

1313
const TestCallExpression = styled_default.default(Test).withConfig({
1414
displayName: "before__TestCallExpression",
1515
componentId: "y0c69d-2"
16-
})([["{height: 20px;}"]]);
16+
})([["{height:20px;}"]]);

0 commit comments

Comments
 (0)