From: Peter Rabbitson Date: Wed, 3 Mar 2010 11:15:21 +0000 (+0000) Subject: Fix whitespace X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dbc2b0e8c189ef25bff87939cd25b303b43dce6d;p=dbsrgits%2FDBIx-Class-Historic.git Fix whitespace --- diff --git a/Changes b/Changes index 5a71df3..33fdf83 100644 --- a/Changes +++ b/Changes @@ -3,7 +3,7 @@ Revision history for DBIx::Class - Fix regression on not properly throwing when $obj->relationship is unresolvable - Add has_relationship method to row objects - - Fix for SQLite to ignore the { for => ... } attribute + - Fix for SQLite to ignore the { for => ... } attribute 0.08120 2010-02-24 08:58:00 (UTC) - Make sure possibly overwritten deployment_statements methods in diff --git a/t/sqlahacks/sqlite.t b/t/sqlahacks/sqlite.t index 14fdc19..86fcc82 100644 --- a/t/sqlahacks/sqlite.t +++ b/t/sqlahacks/sqlite.t @@ -9,7 +9,8 @@ use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema; is_same_sql_bind( - $schema->resultset('Artist')->search ({}, {for => 'update'})->as_query, - "(SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me)", []); + $schema->resultset('Artist')->search ({}, {for => 'update'})->as_query, + '(SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me)', [], +); done_testing;