From fbe6c50067984e1c37310b1418bc96b202b9ca94 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Wed, 10 Aug 2022 15:54:23 -0700 Subject: [PATCH] Fix typo --- test/react_client/js_interop_helpers_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/react_client/js_interop_helpers_test.dart b/test/react_client/js_interop_helpers_test.dart index 496d7325..dafe4248 100644 --- a/test/react_client/js_interop_helpers_test.dart +++ b/test/react_client/js_interop_helpers_test.dart @@ -175,7 +175,7 @@ main() { }); test('array object constructed in JS', () { - // Create this and freeze it on the JS side so that we're not starting out with Dart's list implementation + // Create this on the JS side so that we're not starting out with Dart's list implementation // and potentially any wrapper classes. final frozenArray = createArray(); expect(_getPrototypeOf(frozenArray), _arrayPrototype, reason: 'test setup check; should be an array');