From bf9eec85fb4d14e699a0db8c3ef913b7014b160b Mon Sep 17 00:00:00 2001 From: Mike Goldin Date: Wed, 9 Sep 2020 13:47:30 -0400 Subject: [PATCH] Update default test suite to 0.3.1 --- cmd/eth2-comply/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/eth2-comply/main.go b/cmd/eth2-comply/main.go index 3b86ee3..595f1f5 100644 --- a/cmd/eth2-comply/main.go +++ b/cmd/eth2-comply/main.go @@ -17,7 +17,7 @@ import ( func main() { // Setup and parse CLI arguments. testsRoot := flag.String("testsRoot", "", "Path to a directory tree with test cases") - testsRemote := flag.String("testsRemote", "https://github.com/INFURA/eth2-comply/releases/download/v0.1.0/tests-v0.1.0.zip", "URL of a ZIP file containing a directory tree with test cases") + testsRemote := flag.String("testsRemote", "https://github.com/INFURA/eth2-comply/releases/download/v0.3.1/tests-v0.3.1.zip", "URL of a ZIP file containing a directory tree with test cases") outDir := flag.String("outDir", "/tmp", "A directory where zip files will be downloaded and unzipped.") targetLoc := flag.String("target", "NO TARGET PROVIDED", "A URL to run tests against, for example http://localhost:5051") timeout := flag.String("timeout", "10s", "The time to wait for a case execution to complete. For example, 3600s, 60m, 1h")