Remove “test-” prefix

This commit is contained in:
Patrick Lühne 2018-09-28 16:37:59 +02:00
parent 4343efa462
commit 5754071d29
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 3 additions and 3 deletions

View File

@ -171,9 +171,9 @@ impl BenchmarkRepository
benchmark_repository
.reset_origin(remote_url)
.fetch_branch("test-config")
.fetch_branch("test-results")
.fetch_branch("test-status");
.fetch_branch("config")
.fetch_branch("results")
.fetch_branch("status");
benchmark_repository
}