X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f4ca9ad94a6bb006d1f3c7ba207837f1736d1247..c020dd4470a5f8cbcfe15e764553622828f69ab5:/services/api/test/test_helper.rb 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