You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tasks/NuGetCommand/Tests/L0.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -240,7 +240,7 @@ describe('NuGetCommand Suite', function () {
240
240
241
241
tr.run()
242
242
assert(tr.invokedToolCount==1,'should have run NuGet once');
243
-
assert(tr.ran('c:\\from\\tool\\installer\\nuget.exe pack c:\\agent\\home\\directory\\foo.nuspec -NonInteractive -OutputDirectory c:\\agent\\home\\directory -Properties -version x.y.z-CI-YYYYMMDD-HHMMSS'),'it should have run NuGet');
243
+
assert(tr.ran('c:\\from\\tool\\installer\\nuget.exe pack c:\\agent\\home\\directory\\foo.nuspec -NonInteractive -OutputDirectory C:\\out\\dir -version x.y.z-CI-YYYYMMDD-HHMMSS'),'it should have run NuGet');
244
244
assert(tr.stdOutContained('setting console code page'),'it should have run chcp');
245
245
assert(tr.stdOutContained('NuGet output here'),"should have nuget output");
246
246
assert(tr.succeeded,'should have succeeded');
@@ -256,7 +256,7 @@ describe('NuGetCommand Suite', function () {
256
256
257
257
tr.run()
258
258
assert(tr.invokedToolCount==1,'should have run NuGet once');
259
-
assert(tr.ran('c:\\from\\tool\\installer\\nuget.exe pack c:\\agent\\home\\directory\\foo.nuspec -NonInteractive -OutputDirectory c:\\agent\\home\\directory -Properties -version XX.YY.ZZ'),'it should have run NuGet');
259
+
assert(tr.ran('c:\\from\\tool\\installer\\nuget.exe pack c:\\agent\\home\\directory\\foo.nuspec -NonInteractive -OutputDirectory C:\\out\\dir -version XX.YY.ZZ'),'it should have run NuGet');
260
260
assert(tr.stdOutContained('setting console code page'),'it should have run chcp');
261
261
assert(tr.stdOutContained('NuGet output here'),"should have nuget output");
262
262
assert(tr.succeeded,'should have succeeded');
@@ -272,7 +272,7 @@ describe('NuGetCommand Suite', function () {
272
272
273
273
tr.run()
274
274
assert(tr.invokedToolCount==1,'should have run NuGet once');
275
-
assert(tr.ran('c:\\from\\tool\\installer\\nuget.exe pack c:\\agent\\home\\directory\\foo.nuspec -NonInteractive -OutputDirectory c:\\agent\\home\\directory -Properties -version 1.2.3'),'it should have run NuGet');
275
+
assert(tr.ran('c:\\from\\tool\\installer\\nuget.exe pack c:\\agent\\home\\directory\\foo.nuspec -NonInteractive -OutputDirectory C:\\out\\dir -version 1.2.3'),'it should have run NuGet');
276
276
assert(tr.stdOutContained('setting console code page'),'it should have run chcp');
277
277
assert(tr.stdOutContained('NuGet output here'),"should have nuget output");
0 commit comments