Skip to content

Commit

Permalink
fix: update Sophia contract in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
randomshinichi committed Jul 26, 2019
1 parent 6de6315 commit f893b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_test/compiler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func TestCompiler(t *testing.T) {
}
})
t.Run("CompileContract", func(t *testing.T) {
_, err := c.CompileContract("contract Identity =\n type state = ()\n function main(z : int) = z")
_, err := c.CompileContract("contract Identity =\n type state = ()\n entrypoint main(z : int) = z")
if err != nil {
t.Error(err)
}
Expand Down

0 comments on commit f893b51

Please sign in to comment.