Browse Source

Minor formatting change

David N. Welton 10 years ago
parent
commit
ed44e206c1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      test/epgsql_tests.erl

+ 2 - 1
test/epgsql_tests.erl

@@ -577,7 +577,8 @@ hstore_type_test(Module) ->
       Module,
       fun(C) ->
               check_type(Module, hstore, "''", {[]}, []),
-              check_type(Module, hstore, "'a => 1, b => 2.0, c => null'",
+              check_type(Module, hstore,
+                         "'a => 1, b => 2.0, c => null'",
                          {[{<<"c">>, null}, {<<"b">>, <<"2.0">>}, {<<"a">>, <<"1">>}]}, Values)
       end).