Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b4e39ff
)
MDL-65744 lib: Modify minify test to check properly
author
Mathew May
<mathewm@hotmail.co.nz>
Tue, 11 Jun 2019 23:33:22 +0000
(07:33 +0800)
committer
Mathew May
<mathewm@hotmail.co.nz>
Tue, 16 Jul 2019 09:05:33 +0000
(17:05 +0800)
lib/tests/minify_test.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/tests/minify_test.php
b/lib/tests/minify_test.php
index
6eacf71
..
2e3f9f8
100644
(file)
--- a/
lib/tests/minify_test.php
+++ b/
lib/tests/minify_test.php
@@
-83,7
+83,7
@@
function hm()
}
";
- $this->assertSame("function hm()
\n
{}", core_minify::js($js));
+ $this->assertSame("function hm(){}", core_minify::js($js));
$js = "function hm{}";
$result = core_minify::js($js);