File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ruby_event_store-active_record/spec Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ module ActiveRecord
2727 specify "raise on unknown adapter" do
2828 expect { DatabaseAdapter . from_string ( "kakadudu" ) } . to raise_error (
2929 UnsupportedAdapter ,
30- "Unsupported adapter: \" kakadudu\" "
30+ "Unsupported adapter: \" kakadudu\" " ,
3131 )
3232 expect { DatabaseAdapter . from_string ( nil ) } . to raise_error ( UnsupportedAdapter , "Unsupported adapter: nil" )
3333 expect { DatabaseAdapter . from_string ( 123 ) } . to raise_error ( UnsupportedAdapter , "Unsupported adapter: 123" )
@@ -72,7 +72,7 @@ module ActiveRecord
7272
7373 specify "MySQL doesn't support jsonb" do
7474 expect { DatabaseAdapter ::MySQL . new ( "jsonb" ) } . to raise_error InvalidDataTypeForAdapter ,
75- "MySQL doesn't support \" jsonb\" . Supported types are: binary, json."
75+ "MySQL doesn't support \" jsonb\" . Supported types are: binary, json."
7676 end
7777
7878 specify "PostgreSQL supports binary" do
You can’t perform that action at this time.
0 commit comments