Updated test

This commit is contained in:
Taylor Gerring 2015-06-09 09:47:21 -04:00
parent 858a6f0be9
commit 2e0694b606
1 changed files with 8 additions and 0 deletions

View File

@ -2519,6 +2519,14 @@ func TestSigArgs(t *testing.T) {
if err := json.Unmarshal([]byte(input), &args); err != nil {
t.Error(err)
}
if expected.From != args.From {
t.Errorf("From should be %v but is %v", expected.From, args.From)
}
if expected.Data != args.Data {
t.Errorf("Data should be %v but is %v", expected.Data, args.Data)
}
}
func TestSigArgsEmptyData(t *testing.T) {