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 17f9cf8 commit 52713b9Copy full SHA for 52713b9
internal/cmd/beta/network/create/create_test.go
@@ -227,13 +227,13 @@ func TestParseInput(t *testing.T) {
227
}),
228
},
229
{
230
- description: "use routed true",
+ description: "non-routed network",
231
flagValues: fixtureFlagValues(func(flagValues map[string]string) {
232
- flagValues[nonRoutedFlag] = "false"
+ flagValues[nonRoutedFlag] = "true"
233
234
isValid: true,
235
expectedModel: fixtureInputModel(func(model *inputModel) {
236
- model.NonRouted = false
+ model.NonRouted = true
237
238
239
}
0 commit comments