mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-21 03:16:00 -08:00
Fix incorrect arguments order in TestExprString (#7602)
Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
This commit is contained in:
parent
22aa21e508
commit
b30654211c
|
@ -100,6 +100,6 @@ func TestExprString(t *testing.T) {
|
||||||
exp = test.out
|
exp = test.out
|
||||||
}
|
}
|
||||||
|
|
||||||
testutil.Equals(t, expr.String(), exp)
|
testutil.Equals(t, exp, expr.String())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue