File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -258,6 +258,7 @@ func TestKeystore_ExportImport(t *testing.T) {
258258 key1ks1 , err := ks1 .GetKeys (t .Context (), keystore.GetKeysRequest {KeyNames : []string {"key1" }})
259259 require .NoError (t , err )
260260 key1ks2 , err := ks2 .GetKeys (t .Context (), keystore.GetKeysRequest {KeyNames : []string {"key1" }})
261+ require .NoError (t , err )
261262 require .Equal (t , key1ks1 , key1ks2 )
262263
263264 testData := []byte ("hello world" )
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ func (raw Raw) GoString() string {
2525}
2626
2727func (raw Raw ) Format (state fmt.State , _ rune ) {
28- _ , _ = fmt .Fprintf (state , raw .String ())
28+ _ , _ = fmt .Fprint (state , raw .String ())
2929}
3030
3131// Bytes is a func for accessing the internal bytes field of Raw.
You can’t perform that action at this time.
0 commit comments