diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-06-23 12:03:42 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-06-29 22:22:40 -0600 |
commit | f74da94c18a7b3cbdb577015ae60665509e912e8 (patch) | |
tree | 8715ee6ca981ba2b56a015627c38ada4f935f66b /t | |
parent | 94b67eb26513907eccd2427a005de4d512e8a127 (diff) | |
download | perl-f74da94c18a7b3cbdb577015ae60665509e912e8.tar.gz |
no_utf8_pm.t: Add blank between 'not' and 'ok' in .t
Diffstat (limited to 't')
-rw-r--r-- | t/re/no_utf8_pm.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/re/no_utf8_pm.t b/t/re/no_utf8_pm.t index 8d49751f31..8e9dbb9171 100644 --- a/t/re/no_utf8_pm.t +++ b/t/re/no_utf8_pm.t @@ -8,5 +8,5 @@ print "1..1\n"; # a swash if it thought there was one. "\0" =~ /[\001-\xFF]/i; -print "not" if exists $INC{"utf8.pm"}; +print "not " if exists $INC{"utf8.pm"}; print "ok 1\n"; |