We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c133d9d commit 50ccbdaCopy full SHA for 50ccbda
crates/stackable-operator/src/status/condition/deployment.rs
@@ -126,17 +126,17 @@ mod tests {
126
127
#[test]
128
fn unavailable() {
129
- let dplmt = build_deployment(3, 2);
+ let deployment = build_deployment(3, 2);
130
131
assert_eq!(
132
- DeploymentConditionBuilder::deployment_available(&dplmt),
+ DeploymentConditionBuilder::deployment_available(&deployment),
133
ClusterConditionStatus::False
134
);
135
136
let dplmt = build_deployment(3, 4);
137
138
139
140
141
142
}
0 commit comments