1
0
Fork 0
mirror of https://github.com/benbusby/farside.git synced 2025-04-25 13:10:02 +00:00

Update tests

This commit is contained in:
Ben Busby 2025-01-27 12:48:18 -07:00
parent 6e64a93fd1
commit 56a4202827
No known key found for this signature in database
GPG key ID: B9B7231E01D924A1

View file

@ -44,12 +44,12 @@ func TestDatabase(t *testing.T) {
}
}
firstInstance, err := GetInstance(service)
firstInstance, err := GetInstance(service, "")
if err != nil {
t.Fatalf("Failed to fetch single instance: %v\n", err)
}
secondInstance, err := GetInstance(service)
secondInstance, err := GetInstance(service, "")
if err != nil {
t.Fatalf("Failed to fetch single instance (second): %v\n", err)
} else if firstInstance == secondInstance {