Browse Source

change run mode of TestChannelCategories

pull/1004/head
Chris Johnston 8 years ago
parent
commit
dca85f12df
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      test/Discord.Net.Tests/Tests.Channels.cs

+ 4
- 3
test/Discord.Net.Tests/Tests.Channels.cs View File

@@ -143,9 +143,11 @@ namespace Discord
}

[Fact]
public async Task TestChannelCategories()
public Task TestChannelCategories()
{
CheckChannelCategories(_client, _guild);

return Task.CompletedTask;
}

private async static void CheckChannelCategories(DiscordRestClient client, RestGuild guild)
@@ -166,8 +168,7 @@ namespace Discord
var x = cat2.GetCategoryAsync();
});


// incomplete test, could use more coverage
// incomplete test, could use more coverage, incluing behavior of nested Text and Voice channels
}
}
}

Loading…
Cancel
Save