From 302138c257500301cf281ed8628e688edfd7ecde Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Sat, 18 May 2013 00:59:20 +0100 Subject: [PATCH] Fixed: OutputTest reversed expectation and test value in error messages. The message would read "expected x but was y", where y would actually be the correct expected value and x the wrong one. --- Tests/Objective-J/Preprocessor/OutputTests/OutputTest.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Objective-J/Preprocessor/OutputTests/OutputTest.j b/Tests/Objective-J/Preprocessor/OutputTests/OutputTest.j index b76ca981d..a4003cfcd 100644 --- a/Tests/Objective-J/Preprocessor/OutputTests/OutputTest.j +++ b/Tests/Objective-J/Preprocessor/OutputTests/OutputTest.j @@ -46,7 +46,7 @@ var FILENAMES = [ correct = compressor.compress(correct, { charset : "UTF-8", useServer : true }); }]; - [self assert:preprocessed equals:correct]; + [self assert:correct equals:preprocessed]; }); })(); }