Repository: libcloud Updated Branches: refs/heads/trunk 30f0ec54a -> 8434394e1
Fix one GCE test Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/8434394e Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/8434394e Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/8434394e Branch: refs/heads/trunk Commit: 8434394e14d106264b6fbcea558536a00cae1f45 Parents: 30f0ec5 Author: Quentin Pradet <[email protected]> Authored: Sun Apr 8 21:11:06 2018 +0400 Committer: Quentin Pradet <[email protected]> Committed: Sun Apr 8 21:11:06 2018 +0400 ---------------------------------------------------------------------- libcloud/test/compute/test_gce.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/8434394e/libcloud/test/compute/test_gce.py ---------------------------------------------------------------------- diff --git a/libcloud/test/compute/test_gce.py b/libcloud/test/compute/test_gce.py index d727c15..5874d00 100644 --- a/libcloud/test/compute/test_gce.py +++ b/libcloud/test/compute/test_gce.py @@ -998,6 +998,7 @@ class GCENodeDriverTest(GoogleTestCase, TestCaseMixin): self.assertEqual(network.cidr, cidr) # Test using more options + description = 'A custom network' network = self.driver.ex_create_network(network_name, cidr, description=description, routing_mode=routing_mode)
