Skip to content

Commit

Permalink
[S03/equality.t] missing semis
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@30105 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
lwall committed Mar 16, 2010
1 parent 0d4c9fc commit 9bd177b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions S03-operators/equality.t
Expand Up @@ -19,10 +19,10 @@ ok(!("a" ne "a"), "ne false");
# potential problem cases
ok("\0" eq "\0", "eq on strings with null chars");
ok(!("\0" eq "\0\0"), "!eq on strings with null chars but different lengths");
ok(!("a" eq "a\0"), "eq doesn't have null-padding semantics")
ok(!("a" eq "a "), "eq doesn't have space-padding semantics")
ok("a" ne "a\0", "ne doesn't have null-padding semantics")
ok("a" ne "a ", "ne doesn't have space-padding semantics")
ok(!("a" eq "a\0"), "eq doesn't have null-padding semantics");
ok(!("a" eq "a "), "eq doesn't have space-padding semantics");
ok("a" ne "a\0", "ne doesn't have null-padding semantics");
ok("a" ne "a ", "ne doesn't have space-padding semantics");

# string context on undefined values
my $foo;
Expand Down

0 comments on commit 9bd177b

Please sign in to comment.