mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-09 11:51:59 -04:00
Fix breaking changes in tests
This commit is contained in:
parent
f0a4410ee0
commit
524d0a1bb2
1 changed files with 3 additions and 2 deletions
|
@ -170,7 +170,7 @@ namespace DiscordChatExporter.Cli.Tests
|
||||||
// Assert
|
// Assert
|
||||||
iframeHtml.Should().NotBeNull();
|
iframeHtml.Should().NotBeNull();
|
||||||
iframeHtml?.GetAttribute("src").Should()
|
iframeHtml?.GetAttribute("src").Should()
|
||||||
.StartWithEquivalent("https://open.spotify.com/embed/track/1LHZMWefF9502NPfArRfvP");
|
.StartWithEquivalentOf("https://open.spotify.com/embed/track/1LHZMWefF9502NPfArRfvP");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
@ -203,7 +203,8 @@ namespace DiscordChatExporter.Cli.Tests
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
iframeHtml.Should().NotBeNull();
|
iframeHtml.Should().NotBeNull();
|
||||||
iframeHtml?.GetAttribute("src").Should().StartWithEquivalent("https://www.youtube.com/embed/qOWW4OlgbvE");
|
iframeHtml?.GetAttribute("src").Should()
|
||||||
|
.StartWithEquivalentOf("https://www.youtube.com/embed/qOWW4OlgbvE");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue