Skip to content

Commit

Permalink
Fix test asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
SupunS committed Jan 4, 2023
1 parent 04028a2 commit e9c0daf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions languageserver/integration/entrypoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func Test_Codelensses(t *testing.T) {
title: "💡 Send with (hello: 10.0) signed by Alice",
command: "cadence.server.flow.sendTransaction",
ranges: protocol.Range{Start: protocol.Position{Line: 0x3, Character: 0x3}, End: protocol.Position{Line: 0x3, Character: 0x4}},
args: `"[{\"type\":\"UFix64\",\"value\":\"10.00000000\"}]"`,
args: `"[{\"value\":\"10.00000000\",\"type\":\"UFix64\"}]"`,
}, {
code: `transaction {}`,
title: "💡 Send signed by service account",
Expand All @@ -177,7 +177,7 @@ func Test_Codelensses(t *testing.T) {
title: `💡 Execute script with (hello: "hi")`,
command: "cadence.server.flow.executeScript",
ranges: protocol.Range{Start: protocol.Position{Line: 0x2, Character: 0x3}, End: protocol.Position{Line: 0x2, Character: 0x4}},
args: `"[{\"type\":\"String\",\"value\":\"hi\"}]"`,
args: `"[{\"value\":\"hi\",\"type\":\"String\"}]"`,
}, {
code: `
transaction {
Expand Down

0 comments on commit e9c0daf

Please sign in to comment.