aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/src/SpecTestsuites/SpecTestsuiteBase.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/SpecTestsuites/SpecTestsuiteBase.php b/tests/src/SpecTestsuites/SpecTestsuiteBase.php
index f5cc39a..f2b0206 100644
--- a/tests/src/SpecTestsuites/SpecTestsuiteBase.php
+++ b/tests/src/SpecTestsuites/SpecTestsuiteBase.php
@@ -249,8 +249,9 @@ abstract class SpecTestsuiteBase extends TestCase
$message = " ($message)";
}
$actualErrorMessage = match ($kind) {
- TrapKind::OutOfBoundsMemoryAccess => 'out of bounds memory access',
TrapKind::Unknown => 'unknown',
+ TrapKind::OutOfBoundsMemoryAccess => 'out of bounds memory access',
+ TrapKind::OutOfBoundsTableAccess => 'out of bounds table access',
};
$this->assertSame(
$expectedErrorMessage,