mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Missing # prefix for #to_not and #not_to
This commit is contained in:
parent
ee274dbebd
commit
d576e4a1fa
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ describe Spectator::Expectations::ValueExpectationPartial do
|
|||
end
|
||||
end
|
||||
|
||||
{% for method in [:to_not, :not_to] %}
|
||||
describe "{{method.id}}" do
|
||||
{% for method in %i[to_not not_to] %}
|
||||
describe "#" + {{method.id.stringify}} do
|
||||
it "reports an expectation" do
|
||||
spy = SpyExample.create do
|
||||
actual = 777
|
||||
|
|
Loading…
Reference in a new issue