Skip to content

Commit 7b0e007

Browse files
Fix tests
1 parent 007e04f commit 7b0e007

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/test_runs_medium_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ func TestGetTestRuns_SHA(t *testing.T) {
210210
body, _ = ioutil.ReadAll(resp.Result().Body)
211211
assert.Equal(t, http.StatusOK, resp.Code)
212212
json.Unmarshal(body, &results)
213-
assert.Equal(t, 4, len(results))
213+
assert.Equal(t, 3, len(results))
214214
assert.Equal(t, "1111111111", results[0].Revision)
215215
}
216216

webdriver/label_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
func TestLabelParam_Results(t *testing.T) {
1717
runWebdriverTest(t, func(t *testing.T, app AppServer, wd selenium.WebDriver) {
1818
aligned := false
19-
testLabel(t, wd, app, "/", "experimental", "wpt-results", 4, aligned)
19+
testLabel(t, wd, app, "/", "experimental", "wpt-results", 3, aligned)
2020
})
2121

2222
}

0 commit comments

Comments
 (0)