1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Fixed syntax error in README [Sam Roberts]

This commit is contained in:
Blake Mizerany 2009-02-16 14:55:29 -08:00
parent b2df634c64
commit 753173bb00

View file

@ -421,7 +421,7 @@ and Bacon through separate source files.
def test_with_agent
get '/', :agent => 'Songbird'
assert_equal 'You're in Songbird!', @response.body
assert_equal "You're in Songbird!", @response.body
end
...