Skip to content

Commit cc0ecf6

Browse files
Merge pull request #20229 from smarterclayton/timing
Some build pushes can take less than a second
2 parents b14326d + 499b4ad commit cc0ecf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/extended/builds/build_timing.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var _ = g.Describe("[Feature:Builds][timing] capture build stages and durations"
6262
expectedBuildStages["CommitContainer"] = []string{"10ms", "1000s"}
6363
expectedBuildStages["Assemble"] = []string{"10ms", "1000s"}
6464
expectedBuildStages["PostCommit"] = []string{"", "1000s"}
65-
expectedBuildStages["PushImage"] = []string{"1s", "1000s"}
65+
expectedBuildStages["PushImage"] = []string{"100ms", "1000s"}
6666

6767
g.By("creating test image stream")
6868
err := oc.Run("create").Args("-f", isFixture).Execute()
@@ -87,7 +87,7 @@ var _ = g.Describe("[Feature:Builds][timing] capture build stages and durations"
8787
expectedBuildStages["PullImages"] = []string{"", "1000s"}
8888
expectedBuildStages["Build"] = []string{"10ms", "1000s"}
8989
expectedBuildStages["PostCommit"] = []string{"", "1000s"}
90-
expectedBuildStages["PushImage"] = []string{"1s", "1000s"}
90+
expectedBuildStages["PushImage"] = []string{"100ms", "1000s"}
9191

9292
g.By("creating test image stream")
9393
err := oc.Run("create").Args("-f", isFixture).Execute()

0 commit comments

Comments
 (0)