From 4d3ce478133364747af86be8e2cf8ecd828a9800 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 28 Feb 2023 13:19:51 +0530 Subject: [PATCH] ... --- tools/themes/collection_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/themes/collection_test.go b/tools/themes/collection_test.go index c8b21c30b..aaf6ab4b2 100644 --- a/tools/themes/collection_test.go +++ b/tools/themes/collection_test.go @@ -134,7 +134,7 @@ func TestThemeCollections(t *testing.T) { } after2, _ := os.Stat(filepath.Join(tdir, "test.zip")) if after2.ModTime() != after.ModTime() { - t.Fatal("Cached zip file was incorrectly not re-downloaded") + t.Fatalf("Cached zip file was incorrectly not re-downloaded. %#v != %#v", after.ModTime(), after2.ModTime()) } coll := Themes{name_map: map[string]*Theme{}} closer, err := coll.add_from_zip_file(filepath.Join(tdir, "test.zip"))