summaryrefslogtreecommitdiff
path: root/cli/tests/unit/buffer_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/buffer_test.ts')
-rw-r--r--cli/tests/unit/buffer_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/buffer_test.ts b/cli/tests/unit/buffer_test.ts
index ac2d7db7b..a5a0147ab 100644
--- a/cli/tests/unit/buffer_test.ts
+++ b/cli/tests/unit/buffer_test.ts
@@ -6,7 +6,7 @@
import {
assertEquals,
assert,
- assertStrContains,
+ assertStringContains,
unitTest,
} from "./test_util.ts";
@@ -164,7 +164,7 @@ unitTest(async function bufferTooLargeByteWrites(): Promise<void> {
}
assert(err instanceof Error);
- assertStrContains(err.message, "grown beyond the maximum size");
+ assertStringContains(err.message, "grown beyond the maximum size");
});
unitTest(async function bufferLargeByteReads(): Promise<void> {