Skip to content

Commit db6081f

Browse files
author
Huanxuan Ao
committed
Fix network list functional test
An error in network func test broke our CI, looks like the "is_default" should be "False" by default for now. Change-Id: I021eb8abd9bdf55c7c06031152c107312f104b34
1 parent 107cad2 commit db6081f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openstackclient/tests/functional/network/v2/test_network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def test_network_list(self):
181181
cmd_output["shared"],
182182
)
183183
self.assertEqual(
184-
None,
184+
False,
185185
cmd_output["is_default"],
186186
)
187187
self.assertEqual(

0 commit comments

Comments
 (0)