diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2017-05-18 17:21:36 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2017-05-18 17:21:36 +0200 |
commit | 130f63132e05d6bec55f70d61f059c8dad974c8c (patch) | |
tree | b0b236e2e2c02b6554b52a1afa58b44c50d90203 | |
parent | 9cc61afa1f048bf1f7ff3423632532198d8927df (diff) | |
download | sbotools-130f63132e05d6bec55f70d61f059c8dad974c8c.tar.xz |
32-info.t: fix a typo in a test name
-rw-r--r-- | t/32-info.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/32-info.t b/t/32-info.t index ebada04..0f5e4bd 100644 --- a/t/32-info.t +++ b/t/32-info.t @@ -50,6 +50,6 @@ is ($parse{FLINGLE}[2], 'and', 'and value gotten from FLINGLE key'); is ($parse{FLINGLE}[3], 'a', 'a value gotten from FLINGLE key'); is ($parse{FLINGLE}[4], 'gloob', 'gloob value gotten from FLINGLE key'); is ($parse{FLINGLE}[5], 'blorx', 'blorx value gotten from FLINGLE key'); -is ($parse{FLINGLE}[6], undef, 'FLINGLE key has corect length'); +is ($parse{FLINGLE}[6], undef, 'FLINGLE key has correct length'); delete @parse{qw/ FOO BAR BAZ QUUX FLAR_f FLINGLE /}; is (scalar %parse, 0, 'no additional keys were parsed'); |