Skip to content

Commit

Permalink
fix typo assert (#38)
Browse files Browse the repository at this point in the history
Fix a typo in an `assert`. More details:
#37 (comment)
  • Loading branch information
pineman authored Sep 3, 2023
1 parent 918ed57 commit dfefde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/chusaku_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_mock_app
base_path = "test/mock/app/controllers"

assert_equal(0, exit_code)
assert(2, files.count)
assert_equal(3, files.count)
refute_includes(files, "#{base_path}/api/burritos_controller.rb")

expected =
Expand Down

0 comments on commit dfefde9

Please sign in to comment.