Auto-update dependencies (#63)

Produced via:
  `dep ensure -update github.com/knative/test-infra knative.dev/pkg`
/assign @mattmoor
This commit is contained in:
mattmoor-sockpuppet 2019-07-31 07:16:43 -07:00 committed by Knative Prow Robot
parent b230142e60
commit b22986eba8
3 changed files with 7 additions and 7 deletions

6
Gopkg.lock generated
View File

@ -269,7 +269,7 @@
"tools/dep-collector",
]
pruneopts = "UT"
revision = "0cc427ae355abc72227fc2effaf017c9ded669b4"
revision = "17f2331e80ad0d3e170ea2bae45c3922744f83af"
[[projects]]
digest = "1:5985ef4caf91ece5d54817c11ea25f182697534f8ae6521eadcd628c142ac4b6"
@ -938,7 +938,7 @@
[[projects]]
branch = "master"
digest = "1:d9a4741d0a142181930dd2fad6c2e73171358ffb4b30dcc1908ee8cb6af7e3ff"
digest = "1:07df09a3b0f6d02733f09c9739ea9561f63e6cc5a2692cf17f05cd4bd3611b08"
name = "knative.dev/pkg"
packages = [
"apis",
@ -957,7 +957,7 @@
"metrics/metricskey",
]
pruneopts = "T"
revision = "4f3cebba76819617ca08fbfb64c31ce2cd16058d"
revision = "972acd413fb96750dc6a4b98e4ba344c594a385b"
[solve-meta]
analyzer-name = "dep"

4
vendor/knative.dev/pkg/Gopkg.lock generated vendored
View File

@ -313,14 +313,14 @@
[[projects]]
branch = "master"
digest = "1:c5fcddf864b41dd694b4348b06406904ba8b2e403a3a1bb1a565104beb2b4092"
digest = "1:68050b4ce26531655bac0f6e109d04eb0a4550ead73e320119ed3c628ced4a0a"
name = "github.com/knative/test-infra"
packages = [
"scripts",
"tools/dep-collector",
]
pruneopts = "UT"
revision = "88caf452c91594b30b06b2b62c1ece171d77415c"
revision = "0cc427ae355abc72227fc2effaf017c9ded669b4"
[[projects]]
digest = "1:56dbf15e091bf7926cb33a57cb6bdfc658fc6d3498d2f76f10a97ce7856f1fde"

View File

@ -130,8 +130,8 @@ type conditionsImpl struct {
accessor ConditionsAccessor
}
// Manage creates a ConditionManager from a accessor object using the original
// ConditionSet as a reference. Status must be or point to a struct.
// Manage creates a ConditionManager from an accessor object using the original
// ConditionSet as a reference. Status must be a pointer to a struct.
func (r ConditionSet) Manage(status ConditionsAccessor) ConditionManager {
return conditionsImpl{
accessor: status,