X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c550609485691d8107ae364bfc982569f81f1725..c020dd4470a5f8cbcfe15e764553622828f69ab5:/services/api/test/test_helper.rb?ds=sidebyside diff --git a/services/api/test/test_helper.rb b/services/api/test/test_helper.rb index 68d4bbf5af..7579abf1ff 100644 --- a/services/api/test/test_helper.rb +++ b/services/api/test/test_helper.rb @@ -106,12 +106,12 @@ end class ActionController::TestCase setup do - @counter = 0 + @test_counter = 0 end def check_counter action - @counter += 1 - if @counter == 2 + @test_counter += 1 + if @test_counter == 2 assert_equal 1, 2, "Multiple actions in functional test" end end