lib/spreewald/table_steps.rb in spreewald-1.12.6 vs lib/spreewald/table_steps.rb in spreewald-2.0.0

- old
+ new

@@ -127,11 +127,11 @@ parsed_table = parse_table(expected_table) options = { :exactly => exactly, :unordered => unordered } if negate - tables.should_not contain_table(parsed_table, options) + expect(tables).not_to contain_table(parsed_table, options) else - tables.should contain_table(parsed_table, options) + expect(tables).to contain_table(parsed_table, options) end end end.overridable