Skip to content

Commit

Permalink
removed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Afischbacher committed Dec 28, 2023
1 parent 40eed35 commit 29b7740
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 21 deletions.
8 changes: 1 addition & 7 deletions Nhl.Api.Tests/PlayerEnumHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ namespace Nhl.Api.Tests
[TestClass]
public class PlayerEnumHelperTests
{
[TestMethodWithRetry(RetryCount = 5)]
public void GetAllPlayersTest()
{
var players = PlayerEnumHelper.GetAllPlayers();
Assert.IsNotNull(players);
Assert.IsTrue(players.Count > 20000);
}

}
}
7 changes: 0 additions & 7 deletions Nhl.Api.Tests/ProspectEnumHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,5 @@ namespace Nhl.Api.Tests
[TestClass]
public class ProspectEnumHelperTests
{
[TestMethodWithRetry(RetryCount = 5)]
public void GetAllProspects()
{
var prospects = ProspectEnumHelper.GetAllProspects();
Assert.IsNotNull(prospects);
Assert.IsTrue(prospects.Count > 10000);
}
}
}
7 changes: 0 additions & 7 deletions Nhl.Api.Tests/VenueEnumHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,5 @@ namespace Nhl.Api.Tests
[TestClass]
public class VenueEnumHelperTests
{
[TestMethodWithRetry(RetryCount = 5)]
public void GetAllVenuesTest()
{
var venues = VenueEnumHelper.GetAllVenues();
Assert.IsNotNull(venues);
Assert.IsTrue(venues.Count > 30);
}
}
}

0 comments on commit 29b7740

Please sign in to comment.