Skip to content

Commit

Permalink
Add special case for Astral Acclaim
Browse files Browse the repository at this point in the history
  • Loading branch information
sliekens committed Sep 2, 2023
1 parent 90985a7 commit d3f8617
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion GW2SDK.Tests/Features/Currencies/WalletQueryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,16 @@ public async Task Currencies_can_be_enumerated()
{
CurrencyFact.Id_is_positive(currency);
CurrencyFact.Name_is_not_empty(currency);
CurrencyFact.Description_is_not_empty(currency);
if (currency.Id == 63)
{
// Astral Acclaim is missing a tooltip
Assert.Empty(currency.Description);
}
else
{
CurrencyFact.Description_is_not_empty(currency);
}
CurrencyFact.Order_is_positive(currency);
CurrencyFact.Icon_is_not_empty(currency);
}
Expand Down

0 comments on commit d3f8617

Please sign in to comment.