Skip to content

Commit

Permalink
fix(torsf): bump the version number (ooni#1357)
Browse files Browse the repository at this point in the history
We changed the SNI, so let's change also the version number.

Part of ooni/probe#2524.
  • Loading branch information
bassosimone authored and Murphy-OrangeMud committed Feb 13, 2024
1 parent c395c75 commit f352783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/experiment/torsf/torsf.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
// We may want to have a single implementation for both nettests in the future.

// testVersion is the experiment version.
const testVersion = "0.4.0"
const testVersion = "0.5.0"

// Config contains the experiment config.
type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/experiment/torsf/torsf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func TestExperimentNameAndVersion(t *testing.T) {
if m.ExperimentName() != "torsf" {
t.Fatal("invalid experiment name")
}
if m.ExperimentVersion() != "0.4.0" {
if m.ExperimentVersion() != "0.5.0" {
t.Fatal("invalid experiment version")
}
}
Expand Down

0 comments on commit f352783

Please sign in to comment.