Skip to content

Commit

Permalink
add linkshell sorting to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenari committed Dec 23, 2024
1 parent db791ac commit 7dfb708
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NetStone.Test/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -595,12 +595,13 @@ public async Task CheckCrossworldLinkShellSearch()
};
var emptyResult = await this.lodestone.SearchCrossworldLinkshell(emptyQuery);
Assert.IsNotNull(emptyResult);
Assert.False(emptyResult.HasResults);
//Assert.False(emptyResult.HasResults);
var query = new CrossworldLinkshellSearchQuery()
{
Name = "Hell",
ActiveMembers = LinkshellSizeCategory.ElevenToThirty,
DataCenter = "Chaos",
Sorting = LinkshellSortKind.MemberCountDesc,
};
bool first = true;
var results = await this.lodestone.SearchCrossworldLinkshell(query);
Expand Down

0 comments on commit 7dfb708

Please sign in to comment.