Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update test file to use is parrot_vtable rather than is pirflags. Sti…
…ll doesn't pass again yet, though.
  • Loading branch information
jnthn committed Feb 12, 2011
1 parent d6338b2 commit a022547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/nqp/52-vtable.t
@@ -1,8 +1,8 @@
#! nqp

class ABC {
method () is pirflags<:vtable('get_number')> { 123.0 }
method () is pirflags<:vtable('get_string')> { 'abc' }
method () is parrot_vtable('get_number') { 123.0 }
method () is parrot_vtable('get_string') { 'abc' }
}

plan(2);
Expand Down

0 comments on commit a022547

Please sign in to comment.