From 35d0eaede96072faa8421ac49c9191e240d6aa0a Mon Sep 17 00:00:00 2001 From: Andrew Chiw Date: Wed, 25 Sep 2019 16:18:44 +0200 Subject: [PATCH] fix: compiler_test.go was not using config package --- integration_test/compiler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/compiler_test.go b/integration_test/compiler_test.go index e1e5c87f..424bf76b 100644 --- a/integration_test/compiler_test.go +++ b/integration_test/compiler_test.go @@ -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)