Fix order of arguments in test

This commit is contained in:
Alex Schroeder
2024-02-09 16:56:38 +01:00
parent 7374114bbd
commit 1b3dc89f28

View File

@@ -93,5 +93,5 @@ func TestIndexUpdates(t *testing.T) {
// Make sure the title was updated
index.RLock()
defer index.RUnlock()
assert.Equal(t, index.titles[name], "New page")
assert.Equal(t, "New page", index.titles[name])
}