Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module knative.dev/pkg

go 1.25.0
go 1.26.0

require (
github.com/blang/semver/v4 v4.0.0
Expand Down
2 changes: 1 addition & 1 deletion testing/duck/testbindable.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (tbs *TestBindableStatus) InitializeConditions() {
// MarkBindingUnavailable marks the TestBindable's Ready condition to False with
// the provided reason and message.
func (tbs *TestBindableStatus) MarkBindingUnavailable(reason, message string) {
tbCondSet.Manage(tbs).MarkFalse(apis.ConditionReady, reason, message)
tbCondSet.Manage(tbs).MarkFalse(apis.ConditionReady, reason, "%s", message)
tbs.clearLTT()
}

Expand Down
Loading