Skip to content

Commit

Permalink
comply with Minitest Style Guide
Browse files Browse the repository at this point in the history
  • Loading branch information
alexskr committed Sep 26, 2024
1 parent 3bb4911 commit 3c1c428
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_scheduler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def test_scheduler_locking

assert job1_thread.alive?
assert job2_thread.alive?
assert listen_string.include?("JOB1")
refute listen_string.include?("JOB2")
assert_includes listen_string, "JOB1"
refute_includes listen_string, "JOB2"
job1_thread.kill
job1_thread.join
refute job1_thread.alive?
Expand Down

0 comments on commit 3c1c428

Please sign in to comment.