Skip to content

Commit 1a23614

Browse files
committed
correctly increment counter for test path
1 parent 8268245 commit 1a23614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/WebJobs.Script.Tests.Integration/WebHostEndToEnd/EndToEndTestFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ string GetDestPath(int counter)
9494
_copiedRootPath = GetDestPath(i++);
9595
while (Directory.Exists(_copiedRootPath))
9696
{
97-
_copiedRootPath = GetDestPath(i);
97+
_copiedRootPath = GetDestPath(i++);
9898
}
9999

100100
FileUtility.CopyDirectory(_rootPath, _copiedRootPath);

0 commit comments

Comments
 (0)