1
0
mirror of https://github.com/mrclay/minify.git synced 2025-03-12 16:39:38 +01:00

fix assertNotContains arguments order

This commit is contained in:
Elan Ruusamäe 2015-11-18 17:53:50 +02:00 committed by Steve Clay
parent f9f3e3ca83
commit badb6ce191

View File

@ -15,7 +15,7 @@ class JsClosureCompilerTest extends PHPUnit_Framework_TestCase {
$minOutput = Minify_JS_ClosureCompiler::minify($src);
// Too many recent calls to Closure Compiler API to test.\n";
$this->assertNotContains($minOutput, 'Error(22): Too many compiles');
$this->assertNotContains('Error(22): Too many compiles', $minOutput);
$this->assertSame($minExpected, $minOutput, 'Minify_JS_ClosureCompiler : Overall');
}