Fix trailing whitespace in header comments
[dbsrgits/SQL-Translator.git] / t / 12header_comment.t
index 0713d17..84f5858 100644 (file)
@@ -1,15 +1,14 @@
 #!/usr/bin/perl
 # vim: set ft=perl:
 
-use Test::More;
+use strict;
+use Test::More tests => 5;
 use SQL::Translator::Utils qw($DEFAULT_COMMENT header_comment);
 
-plan tests => 5;
-
 # Superfluous test, but that's ok
 use_ok("SQL::Translator::Utils");
 
-is($DEFAULT_COMMENT, '-- ', 'default comment');
+is($DEFAULT_COMMENT, '--', 'default comment');
 like(header_comment("foo"), qr/[-][-] Created by foo/, "Created by...");
 
 my $comm = header_comment("My::Producer",