Skip to content

Commit d35d099

Browse files
author
Brent Cook
committed
should -> expect
1 parent 8c94d3c commit d35d099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/lib/rex/parser/ini_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
it "enumerates the groups" do
2121
groups = []
2222
ini.each_group { |group| groups << group }
23-
groups.should eq(%w(foo bar baf))
23+
expect(groups).to eq(%w(foo bar baf))
2424
end
2525
end
2626

2727
context "#each_key" do
2828
it "enumerates the groups" do
2929
groups = []
3030
ini.each_key.map { |group| groups << group }
31-
groups.should eq(%w(foo bar baf))
31+
expect(groups).to eq(%w(foo bar baf))
3232
end
3333
end
3434
end

0 commit comments

Comments
 (0)