Skip to content

Commit f10a74f

Browse files
committed
Fix test
1 parent 315cf29 commit f10a74f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/AppInstallerCLIE2ETests/ConfigureCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ public void RunCommandOnSetResourceTest()
410410
// Verify test file created.
411411
string targetFilePath = Path.Combine(testDir, "TestFile.txt");
412412
FileAssert.Exists(targetFilePath);
413-
Assert.AreEqual("TestContent", File.ReadAllText(targetFilePath));
413+
string testContent = File.ReadAllText(targetFilePath);
414+
Assert.True(testContent.Contains("TestContent"));
414415
}
415416

416417
private void DeleteResourceArtifacts()

0 commit comments

Comments
 (0)