From ae4a4bb881d95371e58d9f9eb4da31d13fdbd41d Mon Sep 17 00:00:00 2001 From: Taus Date: Mon, 21 Oct 2024 15:32:23 +0000 Subject: [PATCH] Python: Flip test expectation This test should now validate that we no longer have dataset check errors even when there are unencodable characters. --- python/extractor/cli-integration-test/string-encoding/test.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/extractor/cli-integration-test/string-encoding/test.sh b/python/extractor/cli-integration-test/string-encoding/test.sh index a8cf5afb824b..3bf1a6b03014 100755 --- a/python/extractor/cli-integration-test/string-encoding/test.sh +++ b/python/extractor/cli-integration-test/string-encoding/test.sh @@ -13,7 +13,6 @@ rm -rf db $CODEQL database create db --language python --source-root repo_dir/ -# Note the negation in front -- it witnesses the fact that currently the dataset check FAILS. -! $CODEQL dataset check db/db-python +$CODEQL dataset check db/db-python echo "Test successfully completed."