Skip to content

Commit

Permalink
Merge pull request #621 from Desiki-high/chunkmap-suffix
Browse files Browse the repository at this point in the history
test: update chunkmap suffix
  • Loading branch information
imeoer authored Oct 14, 2024
2 parents d6ca59c + aa65327 commit e69bf9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/converter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,9 @@ func testPack(t *testing.T, fsVersion string) {
dropCache(t)
verify(t, workDir, expectedOverlayFileTree)

ensureFile(t, filepath.Join(cacheDir, chunkDictBlobHash)+".chunk_map")
ensureNoFile(t, filepath.Join(cacheDir, lowerNydusBlobDigest.Hex())+".chunk_map")
ensureFile(t, filepath.Join(cacheDir, upperNydusBlobDigest.Hex())+".chunk_map")
ensureFile(t, filepath.Join(cacheDir, chunkDictBlobHash)+".blob.data.chunk_map")
ensureNoFile(t, filepath.Join(cacheDir, lowerNydusBlobDigest.Hex())+".blob.data.chunk_map")
ensureFile(t, filepath.Join(cacheDir, upperNydusBlobDigest.Hex())+".blob.data.chunk_map")
}

// sudo go test -v -count=1 -run TestPackRef ./tests
Expand Down

0 comments on commit e69bf9b

Please sign in to comment.