Removed DeserializationError::NotSupported

This commit is contained in:
Benoit Blanchon
2021-02-18 19:30:04 +01:00
parent 71f44aaee1
commit 1038fc35df
5 changed files with 12 additions and 11 deletions

View File

@ -34,7 +34,6 @@ TEST_CASE("DeserializationError") {
TEST_STRINGIFICATION(IncompleteInput);
TEST_STRINGIFICATION(InvalidInput);
TEST_STRINGIFICATION(NoMemory);
TEST_STRINGIFICATION(NotSupported);
TEST_STRINGIFICATION(TooDeep);
}
@ -44,7 +43,6 @@ TEST_CASE("DeserializationError") {
TEST_BOOLIFICATION(IncompleteInput, true);
TEST_BOOLIFICATION(InvalidInput, true);
TEST_BOOLIFICATION(NoMemory, true);
TEST_BOOLIFICATION(NotSupported, true);
TEST_BOOLIFICATION(TooDeep, true);
}

View File

@ -181,6 +181,5 @@ TEST_CASE("DeserializationError::f_str()") {
TEST_STRINGIFICATION(IncompleteInput);
TEST_STRINGIFICATION(InvalidInput);
TEST_STRINGIFICATION(NoMemory);
TEST_STRINGIFICATION(NotSupported);
TEST_STRINGIFICATION(TooDeep);
}