diff --git a/test/Discord.Net.Tests.Unit/EmbedBuilderTests.cs b/test/Discord.Net.Tests.Unit/EmbedBuilderTests.cs
index 12ec1a0bd..6cfdc83b2 100644
--- a/test/Discord.Net.Tests.Unit/EmbedBuilderTests.cs
+++ b/test/Discord.Net.Tests.Unit/EmbedBuilderTests.cs
@@ -190,42 +190,6 @@ namespace Discord
Assert.Equal(result.ThumbnailUrl, url);
}
- ///
- /// Tests that invalid urls throw an .
- ///
- /// The url to set.
- [Theory]
- [InlineData(" ")]
- [InlineData("not a url")]
- public void Url_Invalid(string url)
- {
- Assert.Throws(()
- => new EmbedBuilder()
- .WithUrl(url));
- Assert.Throws(()
- => new EmbedBuilder()
- .WithImageUrl(url));
- Assert.Throws(()
- => new EmbedBuilder()
- .WithThumbnailUrl(url));
-
- Assert.Throws(() =>
- {
- var b = new EmbedBuilder();
- b.Url = url;
- });
- Assert.Throws(() =>
- {
- var b = new EmbedBuilder();
- b.ImageUrl = url;
- });
- Assert.Throws(() =>
- {
- var b = new EmbedBuilder();
- b.ThumbnailUrl = url;
- });
- }
-
///
/// Tests the value of the property when there are no fields set.
///
@@ -343,24 +307,6 @@ namespace Discord
Assert.Equal(name, footer.Text);
}
///
- /// Tests that invalid URLs throw an .
- ///
- [Fact]
- public void EmbedFooterBuilder_InvalidURL()
- {
- IEnumerable InvalidUrls()
- {
- yield return "not a url";
- }
- foreach (var url in InvalidUrls())
- {
- Assert.Throws(() =>
- {
- new EmbedFooterBuilder().WithIconUrl(url);
- });
- }
- }
- ///
/// Tests that invalid text throws an .
///
[Fact]