mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 20:23:41 +08:00
Makes TestEvalExpression work on go1.6beta1
Go1.6 changed the behaviour of go/constants.
This commit is contained in:
@ -448,7 +448,7 @@ func TestEvalExpression(t *testing.T) {
|
||||
// comparison operators
|
||||
{"i2 == i3", false, "false", "", "", nil},
|
||||
{"i2 == 2", false, "true", "", "", nil},
|
||||
{"i2 == 2.0", false, "true", "", "", nil},
|
||||
{"i2 == 2", false, "true", "", "", nil},
|
||||
{"i2 == 3", false, "false", "", "", nil},
|
||||
{"i2 != i3", false, "true", "", "", nil},
|
||||
{"i2 < i3", false, "true", "", "", nil},
|
||||
|
||||
Reference in New Issue
Block a user