diff options
author | David Phillips <david@yeah.nah.nz> | 2020-04-04 20:37:11 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2020-04-04 20:37:23 +1300 |
commit | bb50b299de382395bd2ff7099ae1f32db3fd7a7a (patch) | |
tree | b2eeffa616d650642c1faa378f253ccf8b37174b /Mock | |
parent | cba83d93d8b47cc044e8d093049d23aba5d8b6ed (diff) | |
download | idalius-bb50b299de382395bd2ff7099ae1f32db3fd7a7a.tar.xz |
Add test plan for Random
Diffstat (limited to 'Mock')
-rw-r--r-- | Mock/CommandRegistry.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mock/CommandRegistry.pm b/Mock/CommandRegistry.pm index 6531fd7..cf1d573 100644 --- a/Mock/CommandRegistry.pm +++ b/Mock/CommandRegistry.pm @@ -22,7 +22,7 @@ sub run { sub run_owned { my ($self, $owner, $command, %ctx) = @_; - die "$owner::$command not registered\n" + die "$owner\:\:$command not registered\n" unless $self->is_registered_to_owner($owner, $command); # XXX plugins need to eventually use the ctx hash directly. Much more |