mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-19 03:57:55 -04:00
fix stuttering StoreValueUnsetError
This commit is contained in:
parent
5660f813f0
commit
b1818ba089
5 changed files with 9 additions and 9 deletions
|
@ -65,7 +65,7 @@ func testBasic(t *testing.T) {
|
|||
|
||||
_, err = store.Get("invalid:key")
|
||||
assert.Error(err)
|
||||
var unsetErr *StoreValueUnsetError
|
||||
var unsetErr *ValueUnsetError
|
||||
assert.ErrorAs(err, &unsetErr)
|
||||
assert.NoError(store.Delete("test:input"))
|
||||
assert.NoError(store.Delete("another:input"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue