From df8c7aecac1dc449555c1fbb7a3d1fe01a0219e9 Mon Sep 17 00:00:00 2001 From: Kirk Haines Date: Thu, 26 Sep 2024 08:57:05 -0600 Subject: [PATCH] Move this test to the right location. --- gnovm/cmd/gno/run_test.go | 2 +- gnovm/{cmd/gno/run_tests => tests/integ/context}/context.gno | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename gnovm/{cmd/gno/run_tests => tests/integ/context}/context.gno (100%) diff --git a/gnovm/cmd/gno/run_test.go b/gnovm/cmd/gno/run_test.go index 7e361db056c..131e184b11e 100644 --- a/gnovm/cmd/gno/run_test.go +++ b/gnovm/cmd/gno/run_test.go @@ -80,7 +80,7 @@ func TestRunApp(t *testing.T) { recoverShouldContain: "cannot use bool as main.C without explicit conversion", }, { - args: []string{"run", "-expr", "Context()", "./run_tests/context.gno"}, + args: []string{"run", "-expr", "Context()", "../../tests/integ/context/context.gno"}, stdoutShouldContain: "Context worked", }, // TODO: a test file diff --git a/gnovm/cmd/gno/run_tests/context.gno b/gnovm/tests/integ/context/context.gno similarity index 100% rename from gnovm/cmd/gno/run_tests/context.gno rename to gnovm/tests/integ/context/context.gno