ascii: fix hex2u08 name in tests

This commit is contained in:
Danny Robson 2019-02-09 14:59:42 +11:00
parent 54ec225a5a
commit 3d8acbf9cc

View File

@ -66,7 +66,7 @@ main (int, char**)
);
}
tap.expect_eq ("6a"_hex2u8, std::vector<uint8_t>({0x6a}), "hex2u8, 1 byte");
tap.expect_eq ("6a"_hex2u08, std::vector<uint8_t>({0x6a}), "hex2u8, 1 byte");
tap.expect_eq ("a6"_hex2array, std::array<uint8_t,1> ({0xa6}), "hex2array, 1 byte");
});
}