mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
fix test for updated uglifier
This commit is contained in:
parent
15cfbd3b51
commit
407f1b67a3
1 changed files with 3 additions and 3 deletions
|
@ -133,14 +133,14 @@ Feature: Minify Javascript
|
||||||
Then I should see:
|
Then I should see:
|
||||||
"""
|
"""
|
||||||
<script>
|
<script>
|
||||||
(function(){should(),all.be(),on={one:line}})();
|
!function(){should(),all.be(),on={one:line}}();
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
(function(){should(),too()})();
|
!function(){should(),too()}();
|
||||||
</script>
|
</script>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
//<!--
|
//<!--
|
||||||
(function(){line(),here()})();
|
!function(){line(),here()}();
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<script type='text/html'>
|
<script type='text/html'>
|
||||||
|
|
Loading…
Reference in a new issue