Browse Source

Fix

pull/1388/head
Hawx 6 years ago
parent
commit
d09b11b827
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      test/Discord.Net.Tests.Unit/EmbedBuilderTests.cs

+ 1
- 2
test/Discord.Net.Tests.Unit/EmbedBuilderTests.cs View File

@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Text;
using Xunit;

namespace Discord
@@ -250,7 +249,7 @@ namespace Discord
.WithFooter("This is the footer", url)
.WithImageUrl(url)
.WithThumbnailUrl(url)
.WithTimestamp(DateTime.MinValue)
.WithTimestamp(DateTimeOffset.MinValue)
.WithTitle("This is the title")
.WithUrl(url)
.AddField("Field 1", "Inline", true)


Loading…
Cancel
Save