Skip to content

Commit

Permalink
Undo changes introdcued in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SupunS committed Feb 8, 2021
1 parent 8989060 commit 6803a80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 140 deletions.
11 changes: 10 additions & 1 deletion runtime/interpreter/value_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,16 @@ func TestVisitor(t *testing.T) {
}

func TestBlockValue(t *testing.T) {
var block BlockValue = BlockValue{4, 5, &ArrayValue{}, 5.0}

t.Parallel()

block := BlockValue{
Height: 4,
View: 5,
ID: NewArrayValueUnownedNonCopying(),
Timestamp: 5.0,
}

// static type test
var actualTs = block.Timestamp
const expectedTs UFix64Value = 5.0
Expand Down
139 changes: 0 additions & 139 deletions runtime/sema/stringtypeorderedmap.go

This file was deleted.

0 comments on commit 6803a80

Please sign in to comment.