github.com/gradientzero/comby-store-postgres
Advanced tools
@@ -24,3 +24,3 @@ package store_test | ||
| // check if the attribute is set | ||
| if v, ok := commandStore.Options().Attributes.Get("key1"); ok { | ||
| if v := commandStore.Options().Attributes.Get("key1"); v != nil { | ||
| if v != "value" { | ||
@@ -27,0 +27,0 @@ t.Fatalf("wrong value: %q", v) |
@@ -24,3 +24,3 @@ package store_test | ||
| // check if the attribute is set | ||
| if v, ok := eventStore.Options().Attributes.Get("key1"); ok { | ||
| if v := eventStore.Options().Attributes.Get("key1"); v != nil { | ||
| if v != "value" { | ||
@@ -27,0 +27,0 @@ t.Fatalf("wrong value: %q", v) |
+2
-2
@@ -5,6 +5,6 @@ module github.com/gradientzero/comby-store-postgres | ||
| replace github.com/gradientzero/comby/v2 v2.0.0 => /Users/me/Documents/gradient0/repos/comby/comby | ||
| replace github.com/gradientzero/comby/v2 v2.3.0 => /Users/me/Documents/gradient0/repos/comby/comby | ||
| require ( | ||
| github.com/gradientzero/comby/v2 v2.0.0 | ||
| github.com/gradientzero/comby/v2 v2.3.0 | ||
| github.com/lib/pq v1.10.9 | ||
@@ -11,0 +11,0 @@ ) |