[Groonga-commit] groonga/grntest [master] Fix the order of arguments

Back to archive index

HAYASHI Kentaro null+****@clear*****
Mon Nov 19 15:32:20 JST 2012


HAYASHI Kentaro	2012-11-19 15:32:20 +0900 (Mon, 19 Nov 2012)

  New Revision: e38cb6717ccee66802f1b71d04dd3b1883855f86
  https://github.com/groonga/grntest/commit/e38cb6717ccee66802f1b71d04dd3b1883855f86

  Log:
    Fix the order of arguments
    
    The first argument must be "expected".

  Modified files:
    test/test-executor.rb

  Modified: test/test-executor.rb (+2 -2)
===================================================================
--- test/test-executor.rb    2012-11-19 15:26:12 +0900 (f1fbd8a)
+++ test/test-executor.rb    2012-11-19 15:32:20 +0900 (58e80d7)
@@ -53,9 +53,9 @@ class TestExecutor < Test::Unit::TestCase
     end
 
     def test_enable_ignore_feature_on_error
-      assert_not_equal(@context.on_error, :omit)
+      assert_not_equal(:omit, @context.on_error)
       execute("\#@on-error omit")
-      assert_equal(@context.on_error, :omit)
+      assert_equal(:omit, @context.on_error)
     end
   end
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index