Skip to content

Commit

Permalink
match azure instead of aws to get over 100 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisPeriquet committed Apr 5, 2024
1 parent 5988528 commit dc7f5d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,13 @@ func TestDisruptionDataFileParsing(t *testing.T) {
jobType := platformidentification.JobType{
Release: currentRelease,
FromRelease: currentRelease,
Platform: "aws",
Platform: "azure",
Architecture: "amd64",
Network: "ovn",
Topology: "ha",
}

percentiles, _, err := disruptionMatcher.BestMatchDuration("kube-api-new-connections", jobType, 50)
percentiles, _, err := disruptionMatcher.BestMatchDuration("kube-api-new-connections", jobType, 100)
// We can't really check a value here as it could very likely be 0,
// so instead we'll make sure we didn't get a msg complaining about no match with no fallback.
assert.NotEqual(t, percentiles, historicaldata.StatisticalDuration{}, "BestMatchDuration found no match and could not fall back for kube-api-new-connections aws amd64 ovn ha")
Expand Down

0 comments on commit dc7f5d7

Please sign in to comment.