Skip to content

Commit

Permalink
fix: compiler_test.go was not using config package
Browse files Browse the repository at this point in the history
  • Loading branch information
randomshinichi committed Oct 10, 2019
1 parent 1904f0e commit 35d0eae
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 @@ -40,7 +40,7 @@ func TestCompiler(t *testing.T) {
ae_addres
`

_, err := c.CompileContract(wontcompileSource, aeternity.Config.Compiler.Backend)
_, err := c.CompileContract(wontcompileSource, config.Compiler.Backend)
errtype := reflect.TypeOf(err).String()
if errtype != "*operations.CompileContractForbidden" {
t.Error(err)
Expand Down

0 comments on commit 35d0eae

Please sign in to comment.