Skip to content

Commit 30d64f9

Browse files
committed
Fix test sequence
1 parent ffd398d commit 30d64f9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/ofx/ofx_parser_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ def ofx_example_to(version)
8686
ofx.parser.should == 'ofx-211-parser'
8787
end
8888

89-
it "should use 211 parser to parse version 211 ofx files" do
89+
it "should use 211 parser to parse version 202 ofx files" do
9090
OFX::Parser::OFX211.stub(:new).and_return('ofx-211-parser')
91-
ofx = OFX::Parser::Base.new(ofx_example_to('211'))
91+
ofx = OFX::Parser::Base.new(ofx_example_to('202'))
9292
ofx.parser.should == 'ofx-211-parser'
9393
end
9494

95-
it "should use 211 parser to parse version 202 ofx files" do
95+
it "should use 211 parser to parse version 211 ofx files" do
9696
OFX::Parser::OFX211.stub(:new).and_return('ofx-211-parser')
97-
ofx = OFX::Parser::Base.new(ofx_example_to('202'))
97+
ofx = OFX::Parser::Base.new(ofx_example_to('211'))
9898
ofx.parser.should == 'ofx-211-parser'
9999
end
100100

0 commit comments

Comments
 (0)