Skip to content

Commit

Permalink
Adjust downloader tests for changed indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
villermen committed Sep 14, 2022
1 parent d967342 commit fbf38fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RuneScapeCacheToolsTest/Test/Cache/CacheTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void TestPutFile(Type cacheType, CacheIndex index, int fileId)
[InlineData(typeof(JavaClientCache), 7)]
[InlineData(typeof(FlatFileCache), 7)]
[InlineData(typeof(NxtClientCache), 7)]
[InlineData(typeof(DownloaderCache), 46)]
[InlineData(typeof(DownloaderCache), 45)]
public void TestGetIndexes(Type cacheType, int amountOfIndexes)
{
var indexes = this._fixture.Caches[cacheType].GetAvailableIndexes();
Expand Down
2 changes: 1 addition & 1 deletion RuneScapeCacheToolsTest/Test/Cache/DownloaderCacheTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void TestDownloadReferenceTable()
}

[Theory]
[InlineData(61, 46)]
[InlineData(62, 45)]
public void TestDownloadMasterReferenceTable(int expectedTableCount, int expectedAvailableTableCount)
{
var masterReferenceTable = this.Fixture.DownloaderCache.GetMasterReferenceTable();
Expand Down

0 comments on commit fbf38fb

Please sign in to comment.