Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed Aug 16, 2024
1 parent 3351b5c commit 5e56996
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FreePackages.Tests/Apps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ public void CanDetectFreeApp() {
public void CanDetectAvailableAppByReleaseState() {
var app = new FilterableApp(KeyValue.LoadAsText("app_with_release_state.txt"));

Assert.IsFalse(app.ReleaseState.IsNullOrEmpty());
Assert.IsFalse(string.IsNullOrEmpty(app.ReleaseState));
Assert.IsTrue(app.IsAvailable());
}

[TestMethod]
public void CanDetectAvailableAppByState() {
var app = new FilterableApp(KeyValue.LoadAsText("app_with_state.txt"));

Assert.IsFalse(app.State.IsNullOrEmpty());
Assert.IsFalse(string.IsNullOrEmpty(app.State));
Assert.IsTrue(app.IsAvailable());
}

Expand Down Expand Up @@ -90,7 +90,7 @@ public void CanFindAppDLC() {
var app = new FilterableApp(KeyValue.LoadAsText("app_with_dlc.txt"));
PackageFilter.Country = "";

Assert.IsFalse(app.ListOfDLC.IsNullOrEmpty());
Assert.IsFalse(string.IsNullOrEmpty(app.ListOfDLC));
}

[TestMethod]
Expand Down

0 comments on commit 5e56996

Please sign in to comment.