diff options
| author | Huanxuan Ao <huanxuan.ao@easystack.cn> | 2017-04-19 21:47:57 +0800 |
|---|---|---|
| committer | Huanxuan Ao <huanxuan.ao@easystack.cn> | 2017-04-19 21:47:57 +0800 |
| commit | db6081fb802559cdb6623bbc5dbff597cd287b07 (patch) | |
| tree | a8b2c9b75fad1ecdc95687f6ecaa4e29dcf018d2 /openstackclient/tests/functional | |
| parent | 107cad200a15a3131525436b483dbef5e88b9508 (diff) | |
| download | python-openstackclient-db6081fb802559cdb6623bbc5dbff597cd287b07.tar.gz | |
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
Diffstat (limited to 'openstackclient/tests/functional')
| -rw-r--r-- | openstackclient/tests/functional/network/v2/test_network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/tests/functional/network/v2/test_network.py b/openstackclient/tests/functional/network/v2/test_network.py index 0e10bfce..02fa42f2 100644 --- a/openstackclient/tests/functional/network/v2/test_network.py +++ b/openstackclient/tests/functional/network/v2/test_network.py @@ -181,7 +181,7 @@ class NetworkTests(base.TestCase): cmd_output["shared"], ) self.assertEqual( - None, + False, cmd_output["is_default"], ) self.assertEqual( |
