From 6a8a89385ab8555e286d44bcfa152834d5a4d449 Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Tue, 26 Nov 2024 10:48:06 +0100 Subject: [PATCH] fix(echcheck): bump version number in tests (#1671) ## Checklist - [x] I have read the [contribution guidelines](https://github.com/ooni/probe-cli/blob/master/CONTRIBUTING.md) - [x] reference issue for this pull request: https://github.com/ooni/probe/issues/2813 ## Description Bring the measure_test.go version in line with measure.go version. This should make *unit tests* green again. --- internal/experiment/echcheck/measure_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/experiment/echcheck/measure_test.go b/internal/experiment/echcheck/measure_test.go index 14ae2b292..c6fbe71ff 100644 --- a/internal/experiment/echcheck/measure_test.go +++ b/internal/experiment/echcheck/measure_test.go @@ -14,7 +14,7 @@ func TestNewExperimentMeasurer(t *testing.T) { if measurer.ExperimentName() != "echcheck" { t.Fatal("unexpected name") } - if measurer.ExperimentVersion() != "0.1.2" { + if measurer.ExperimentVersion() != "0.2.0" { t.Fatal("unexpected version") } }