Fix incorrect arguments order in TestExprString (#7602)

Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
This commit is contained in:
Guangwen Feng 2020-07-17 20:38:04 +08:00 committed by GitHub
parent 22aa21e508
commit b30654211c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,6 +100,6 @@ func TestExprString(t *testing.T) {
exp = test.out
}
testutil.Equals(t, expr.String(), exp)
testutil.Equals(t, exp, expr.String())
}
}