Skip to content

Commit cca78ca

Browse files
committed
C#: Fix the dotnet pack integration test.
1 parent 93eaeae commit cca78ca

File tree

1 file changed

+2
-2
lines changed
  • csharp/ql/integration-tests/all-platforms/dotnet_pack

1 file changed

+2
-2
lines changed

csharp/ql/integration-tests/all-platforms/dotnet_pack/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
from create_database_utils import *
33
from diagnostics_test_utils import *
44

5-
run_codeql_database_create(['dotnet pack'], db=None, lang="csharp")
5+
run_codeql_database_create(['dotnet pack -o nugetpackage'], db=None, lang="csharp")
66

77
## Check that the NuGet package is created.
8-
if not os.path.isfile("bin/Debug/dotnet_pack.1.0.0.nupkg"):
8+
if not os.path.isfile("nugetpackage/dotnet_pack.1.0.0.nupkg"):
99
raise Exception("The NuGet package was not created.")
1010

1111
check_diagnostics()

0 commit comments

Comments
 (0)