We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315cf29 commit f10a74fCopy full SHA for f10a74f
src/AppInstallerCLIE2ETests/ConfigureCommand.cs
@@ -410,7 +410,8 @@ public void RunCommandOnSetResourceTest()
410
// Verify test file created.
411
string targetFilePath = Path.Combine(testDir, "TestFile.txt");
412
FileAssert.Exists(targetFilePath);
413
- Assert.AreEqual("TestContent", File.ReadAllText(targetFilePath));
+ string testContent = File.ReadAllText(targetFilePath);
414
+ Assert.True(testContent.Contains("TestContent"));
415
}
416
417
private void DeleteResourceArtifacts()
0 commit comments