Formatting

This commit is contained in:
Michael Miller 2022-01-07 17:27:25 -07:00
parent 07aa968d68
commit be79367256
No known key found for this signature in database
GPG Key ID: AC78B32D30CE34A2
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ Spectator.describe "`be_between` matcher" do
# boundaries check
it { is_expected.to be_between(0, 7) }
it { is_expected.to be_between(7, 10) }
it { is_expected.not_to (be_between(0, 7).exclusive) }
it { is_expected.not_to(be_between(0, 7).exclusive) }
end
end
end

View File

@ -34,7 +34,7 @@ Spectator.describe "`change` matcher" do
context "expect no change" do
describe "Counter#increment" do # TODO: Allow multiple arguments to context/describe.
# deliberate failures
# deliberate failures
it_fails "should not increment the count by 1 (using not_to)" do
expect { Counter.increment }.not_to change { Counter.count }
end