From ed19f1989352fb1a40f9fb24762ffbd1e2e01487 Mon Sep 17 00:00:00 2001 From: Erik Marks Date: Mon, 21 Oct 2024 16:28:45 -0700 Subject: [PATCH] Add type error in test --- packages/streams/src/utils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/streams/src/utils.test.ts b/packages/streams/src/utils.test.ts index c98ee28fc..bfdf35acd 100644 --- a/packages/streams/src/utils.test.ts +++ b/packages/streams/src/utils.test.ts @@ -17,7 +17,7 @@ const makeErrorMatcher = makeErrorMatcherFactory(expect); describe('assertIsWritable', () => { it.each([ - ['pending result with string', makePendingResult('foo')], + ['pending result with string', makePendingResult('foo') as symbol], ['pending result with number', makePendingResult(42)], ['pending result with object', makePendingResult({ key: 'value' })], ['pending result with null', makePendingResult(null)],