Skip to content

Commit

Permalink
fix: check right files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexwang8 committed Oct 17, 2024
1 parent 510a90c commit 1744c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_bpe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,7 @@ func TestModelDownloadFairseq(t *testing.T) {
// vocab, config. merges, pytorch_model

// Check for additional metadata files
metaFiles := []string{"vocab.json, config.json", "pytorch_model.bin", "merges.txt"}
metaFiles := []string{"vocab.json", "config.json", "pytorch_model.bin", "merges.txt"}
for _, metaFile := range metaFiles {
metaPath := destPath + "/" + metaFile
assertFileExists(t, metaPath)
Expand Down

0 comments on commit 1744c2c

Please sign in to comment.