Compare commits
2 Commits
96ec3919b2
...
73013f53bb
Author | SHA1 | Date | |
---|---|---|---|
73013f53bb | |||
986f3979fb |
@ -83,7 +83,12 @@ func TestEngine(sessionId string) (engine.Engine, func()) {
|
|||||||
en = en.WithFirst(hl.Init)
|
en = en.WithFirst(hl.Init)
|
||||||
|
|
||||||
cleanFn := func() {
|
cleanFn := func() {
|
||||||
err := menuStorageService.Close()
|
err := en.Finish()
|
||||||
|
if err != nil {
|
||||||
|
logg.Errorf(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
err = menuStorageService.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logg.Errorf(err.Error())
|
logg.Errorf(err.Error())
|
||||||
}
|
}
|
||||||
|
@ -659,10 +659,14 @@ func TestMyAccount_MyAddress(t *testing.T) {
|
|||||||
t.Errorf("Test case '%s' failed during Flush: %v", group.Name, err)
|
t.Errorf("Test case '%s' failed during Flush: %v", group.Name, err)
|
||||||
}
|
}
|
||||||
b := w.Bytes()
|
b := w.Bytes()
|
||||||
if !bytes.Equal(b, []byte(step.ExpectedContent)) {
|
|
||||||
t.Fatalf("expected:\n\t%s\ngot:\n\t%s\n", step.ExpectedContent, b)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
publicKey := extractPublicKey(b)
|
||||||
|
|
||||||
|
expectedContent := bytes.Replace([]byte(step.ExpectedContent), []byte("{public_key}"), []byte(publicKey), -1)
|
||||||
|
|
||||||
|
if !bytes.Equal(b, expectedContent) {
|
||||||
|
t.Fatalf("expected:\n\t%s\ngot:\n\t%s\n", expectedContent, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -583,7 +583,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"input": "6",
|
"input": "6",
|
||||||
"expectedContent": "Address: 0xdF8CB1D9b5BDaE418E5Bee107031cA7d933906CD\n9:Quit"
|
"expectedContent": "Address: {public_key}\n9:Quit"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"input": "9",
|
"input": "9",
|
||||||
|
Loading…
Reference in New Issue
Block a user