fix failing test

This commit is contained in:
David Markowitz
2026-06-06 23:40:40 -07:00
parent fb166bd24d
commit d9c8955862

View File

@@ -213,7 +213,7 @@ TEST(dCommonTests, AMFDeserializeUnimplementedValuesTest) {
bool caughtException = false;
try {
ReadFromBitStream(testBitStream);
} catch (eAmf unimplementedValueType) {
} catch (std::exception& e) {
caughtException = true;
}