mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Inspect the underlying value
This is needed because MatchDataValue is now a class instead of a struct.
This commit is contained in:
parent
e7e1d0e084
commit
c156c55c72
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ describe Spectator::Expectations::Expectation do
|
|||
expectation_values = expectation.values
|
||||
match_data.values.zip(expectation_values).each do |m, e|
|
||||
m.label.should eq(e.label)
|
||||
m.value.should eq(e.value)
|
||||
m.value.value.should eq(e.value.value)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue