From e5262d6dfe1843037a87b3f340e64cde6c469440 Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Tue, 12 Jul 2016 18:18:40 -0300 Subject: [PATCH] Updates test. Removed extra CR --- t/pt-table-sync/enum_fields.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/pt-table-sync/enum_fields.t b/t/pt-table-sync/enum_fields.t index ff8b9871..05ab4dd0 100644 --- a/t/pt-table-sync/enum_fields.t +++ b/t/pt-table-sync/enum_fields.t @@ -40,9 +40,10 @@ $master_dbh->do('set sql_log_bin=0'); $master_dbh->do(q/INSERT INTO enum_fields_db.rgb (name, hex_code) VALUES ('blue','0x0000FF')/); $output = `$trunk/bin/pt-table-sync --sync-to-master h=127.1,P=12346,u=msandbox,p=msandbox -d enum_fields_db --print`; $output = remove_traces($output); +chomp($output); is( $output, - "REPLACE INTO `enum_fields_db`.`rgb`(`name`, `hex_code`) VALUES ('blue', '0x0000FF');", + q/REPLACE INTO `enum_fields_db`.`rgb`(`name`, `hex_code`) VALUES ('blue', '0x0000FF');/, 'Quote Enum fields' );