dnscheck: bump patch version number (#919)

Part of https://github.com/ooni/probe/issues/2234
This commit is contained in:
Simone Basso 2022-09-01 19:23:46 +02:00 committed by GitHub
parent cee89132af
commit a68472dcee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import (
const ( const (
testName = "dnscheck" testName = "dnscheck"
testVersion = "0.9.0" testVersion = "0.9.1"
defaultDomain = "example.org" defaultDomain = "example.org"
) )

View File

@ -49,7 +49,7 @@ func TestExperimentNameAndVersion(t *testing.T) {
if measurer.ExperimentName() != "dnscheck" { if measurer.ExperimentName() != "dnscheck" {
t.Error("unexpected experiment name") t.Error("unexpected experiment name")
} }
if measurer.ExperimentVersion() != "0.9.0" { if measurer.ExperimentVersion() != "0.9.1" {
t.Error("unexpected experiment version") t.Error("unexpected experiment version")
} }
} }