diff --git a/testing/cli_tests/extensions.py b/testing/cli_tests/extensions.py index de5592bdf..361ddbf31 100755 --- a/testing/cli_tests/extensions.py +++ b/testing/cli_tests/extensions.py @@ -106,15 +106,15 @@ def test_regexp(): limbo.run_test_fn( "select regexp_capture('the year is 2021', '([0-9]+)') = '2021';", true, - ); + ) limbo.run_test_fn( "select regexp_capture('abc 123 def', '([a-z]+) ([0-9]+) ([a-z]+)', 2) = '123';", true, - ); + ) limbo.run_test_fn( "select regexp_capture('no digits here', '([0-9]+)');", null, - ); + ) limbo.quit()