Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit decf90a

Browse files
committedFeb 7, 2014
Fix spec for ruby 1.8 needing rocket style hashes
1 parent 2ca41a3 commit decf90a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎spec/opal/stdlib/erb/erb_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
describe "locals" do
3535
it "can be passed to a compiled template" do
3636
def self.non_local; 'Ford'; end
37-
@with_locals.render(self, {is_local: 'Prefect'}).should == "Ford Prefect\n"
37+
@with_locals.render(self, {:is_local => 'Prefect'}).should == "Ford Prefect\n"
3838
end
3939
end
4040
end

0 commit comments

Comments
 (0)
Please sign in to comment.