2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-16 01:22:20 +00:00

Corrected typo in test name

This commit is contained in:
ruben
2020-05-04 11:26:51 +01:00
parent ee882d3379
commit 40d101da02

View File

@@ -76,7 +76,7 @@ INSTANTIATE_TEST_SUITE_P(StringTypes, DeserializeTextValueTest, Values(
text_value_testcase("bit", "\1", "\1", protocol_field_type::bit),
text_value_testcase("decimal", "\1", "\1", protocol_field_type::newdecimal),
text_value_testcase("geomtry", "\1", "\1", protocol_field_type::geometry, column_flags::binary | column_flags::blob)
text_value_testcase("geometry", "\1", "\1", protocol_field_type::geometry, column_flags::binary | column_flags::blob)
), test_name_generator);
template <typename SignedType, typename UnsignedType>