-
Notifications
You must be signed in to change notification settings - Fork 590
dnm test pipelines 3 #2687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
dnm test pipelines 3 #2687
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,7 @@ crdName: consoleplugins.console.openshift.io | |||||
| version: v1 | ||||||
| tests: | ||||||
| onCreate: | ||||||
| - name: Should be able to create a minimal ConsolePlugin | ||||||
| - name: Should be able to cr eate a minimal ConsolePlugin | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo: double space in test name. The test name contains an extra space in "create" ( ✏️ Proposed fix- - name: Should be able to cr eate a minimal ConsolePlugin
+ - name: Should be able to create a minimal ConsolePlugin📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| initial: | | ||||||
| apiVersion: console.openshift.io/v1 | ||||||
| kind: ConsolePlugin | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,7 @@ import ( | |||||
| func FeatureSets(clusterProfile ClusterProfileName, featureSet configv1.FeatureSet) (*FeatureGateEnabledDisabled, error) { | ||||||
| byFeatureSet, ok := allFeatureGates[clusterProfile] | ||||||
| if !ok { | ||||||
| return nil, fmt.Errorf("no information found for ClusterProfile=%q", clusterProfile) | ||||||
| return nil, fmt.Errorf("no information found for ClusterProfile=%q", clusterProfile) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo: double space in error message. The error message contains an extra space ( ✏️ Proposed fix- return nil, fmt.Errorf("no information found for ClusterProfile=%q", clusterProfile)
+ return nil, fmt.Errorf("no information found for ClusterProfile=%q", clusterProfile)📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| } | ||||||
| featureGates, ok := byFeatureSet[featureSet] | ||||||
| if !ok { | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ | |
| "name": "cluster" | ||
| }, | ||
| "spec": {}, | ||
|
|
||
| "status": { | ||
| "featureGates": [ | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extraneous whitespace in FROM instruction.
The
FROMinstruction contains extra spaces (FROM registry...instead ofFROM registry...). While Docker tolerates this, it deviates from standard formatting conventions and may indicate an unintended edit.🧹 Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents