Skip to content

Commit

Permalink
Fix testing print issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
corywalker committed Jul 24, 2017
1 parent b712655 commit ddc18f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expreduce/testing.go
Expand Up @@ -64,7 +64,7 @@ type SameTestEx struct {
}

func (this *SameTestEx) Run(t *testing.T, es *EvalState, td TestDesc) bool {
succ, s := CasTestInner(es, this.Out.Eval(es), this.In.Eval(es), this.In.String(), true, td.desc)
succ, s := CasTestInner(es, this.In.Eval(es), this.Out.Eval(es), this.In.String(), true, td.desc)
assert.True(t, succ, s)
return succ
}
Expand Down

0 comments on commit ddc18f2

Please sign in to comment.