Skip to content

Commit 029107b

Browse files
committed
test: fix failing tests
1 parent 0b49856 commit 029107b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/expected/inlined-script.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<html>
22
<head>
3-
<script>function test(){var r="lorem ipsum";return r}</script>
3+
<script>function test(){return"lorem ipsum"}</script>
44
</head>
55
<body>
66
</body>

test/expected/inlined-with-attributes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<html>
22
<head>
3-
<script>function test(){var r="lorem ipsum";return r}</script>
3+
<script>function test(){return"lorem ipsum"}</script>
44
<style type="text/css" media="screen">.classname{color:red}</style>
55
</head>
66
<body>

0 commit comments

Comments
 (0)