From 51311c8a823f2b77bac0cc206819c989d4cb4ee2 Mon Sep 17 00:00:00 2001
From: Zach Leatherman <zachleat@users.noreply.github.com>
Date: Wed, 18 Dec 2024 10:22:08 -0600
Subject: [PATCH] Clarity on test name

---
 test/AssetCacheTest.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/AssetCacheTest.js b/test/AssetCacheTest.js
index c7db873..b40675d 100644
--- a/test/AssetCacheTest.js
+++ b/test/AssetCacheTest.js
@@ -164,7 +164,7 @@ test("setInitialCacheTimestamp method after save is ignored", async (t) => {
 	t.not(cache.getCachedTimestamp(), timestamp);
 });
 
-test("setInitialCacheTimestamp method after second save is used", async (t) => {
+test("setInitialCacheTimestamp method before a second save is used", async (t) => {
 	let cache = new AssetCache("this_is_a_test3", ".cache", {
 		dryRun: true
 	});