Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 839ef43

Browse files
committed
Fix test, the order has changed
1 parent 8b41a13 commit 839ef43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/IntegrationTests/Installer/GitInstallerTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ public void GitLfsIsInstalledIfMissingWithCustomGitPath()
253253
var procTask = new SimpleProcessTask(TaskManager.Token, "something")
254254
.Configure(ProcessManager);
255255
var pathList = procTask.Process.StartInfo.EnvironmentVariables["PATH"].ToNPathList(Environment).TakeWhile(x => x != "END");
256-
pathList.First().Should().Be(gitExec.Parent);
257-
pathList.Any(x => x == gitLfsExec.Parent).Should().BeTrue();
256+
pathList.First().Should().Be(gitLfsExec.Parent);
257+
pathList.Skip(1).First().Should().Be(gitExec.Parent);
258258
}
259259
}
260260
}

0 commit comments

Comments
 (0)