Fix sticker tests

This commit is contained in:
Tyrrrz
2023-02-23 01:04:29 +02:00
parent 0981c51fb9
commit 91afded824
2 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ public class HtmlStickerSpecs
// Assert
var stickerUrl = message.QuerySelector("[title='rock'] img")?.GetAttribute("src");
stickerUrl.Should().Be("https://discord.com/stickers/904215665597120572.png");
stickerUrl.Should().Be("https://cdn.discordapp.com/stickers/904215665597120572.png");
}
[Fact]
@@ -33,6 +33,6 @@ public class HtmlStickerSpecs
// Assert
var stickerUrl = message.QuerySelector("[title='Yikes'] [data-source]")?.GetAttribute("data-source");
stickerUrl.Should().Be("https://discord.com/stickers/816087132447178774.json");
stickerUrl.Should().Be("https://cdn.discordapp.com/stickers/816087132447178774.json");
}
}