From 5f276985c956949af6e731c353f619335f5970b6 Mon Sep 17 00:00:00 2001 From: Alexey Date: Sun, 4 Aug 2024 22:10:53 -0700 Subject: [PATCH] Update cases_test.dart --- test/cases_test.dart | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/test/cases_test.dart b/test/cases_test.dart index 9d65337..be1fa3b 100644 --- a/test/cases_test.dart +++ b/test/cases_test.dart @@ -7,16 +7,16 @@ void main() { runTestsInDirectory('test/cases/cts'); runTestsInDirectory('test/cases/standard'); runTestsInDirectory('test/cases/extra', - parser: JsonPathParser(functions: [ - const Index(), - const IsArray(), - const IsBoolean(), - const IsNumber(), - const IsObject(), - const IsString(), - const Key(), - const Reverse(), - const Siblings(), - const Xor(), + parser: JsonPathParser(functions: const [ + Index(), + IsArray(), + IsBoolean(), + IsNumber(), + IsObject(), + IsString(), + Key(), + Reverse(), + Siblings(), + Xor(), ])); }