File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments