Skip to content

Commit 177ae7d

Browse files
committed
correct a test
1 parent 0c93c21 commit 177ae7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

S05-grammar/namespace.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ check that multi-jointed namespaces work with grammars
4444
grammar Foo::Bar {
4545
token foo { foo }
4646
}
47-
is("foo" ~~ &Foo::Bar::foo, 'foo', 'regex in a namespace callable');
47+
ok("foo" ~~ &Foo::Bar::foo, 'regex in a namespace callable');
4848

4949
grammar Grammar::Deep { token foo { 'foo' }; }
5050
grammar GrammarShallow { token TOP { <Grammar::Deep::foo> 'bar' }; }

0 commit comments

Comments
 (0)