renamed blob to blob_type_t
This commit is contained in:
@@ -118,8 +118,8 @@ TEST_CASE("Test string to floating point conversion", "[convert][string][floatin
|
||||
}
|
||||
|
||||
TEST_CASE("Test blob to blob conversion", "[convert][blob]") {
|
||||
blob from{1, 2, 3, 4};
|
||||
const auto res = to<blob>(from);
|
||||
blob_type_t from{1, 2, 3, 4};
|
||||
const auto res = to<blob_type_t>(from);
|
||||
|
||||
REQUIRE(res.is_ok());
|
||||
REQUIRE(from == *res);
|
||||
|
||||
Reference in New Issue
Block a user