Repository: libcloud Updated Branches: refs/heads/trunk a119e3968 -> 05b08e99b
Remove INTERNAL address type test Signed-off-by: Quentin Pradet <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/4d3e959a Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/4d3e959a Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/4d3e959a Branch: refs/heads/trunk Commit: 4d3e959abe49d38632e17adcc091d0b5fae5b0ef Parents: 7a5abfa Author: Jeremy Solarz <[email protected]> Authored: Fri Feb 23 19:08:13 2018 +0000 Committer: Quentin Pradet <[email protected]> Committed: Sun Feb 25 09:00:55 2018 +0400 ---------------------------------------------------------------------- libcloud/test/compute/test_gce.py | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/4d3e959a/libcloud/test/compute/test_gce.py ---------------------------------------------------------------------- diff --git a/libcloud/test/compute/test_gce.py b/libcloud/test/compute/test_gce.py index 82a2e64..e04cc93 100644 --- a/libcloud/test/compute/test_gce.py +++ b/libcloud/test/compute/test_gce.py @@ -742,11 +742,9 @@ class GCENodeDriverTest(GoogleTestCase, TestCaseMixin): address='10.128.0.12', address_type='INTERNAL', subnetwork='subnet-1') - print address self.assertTrue(isinstance(address, GCEAddress)) self.assertEqual(address.name, address_name) self.assertEqual(address.address, '10.128.0.12') - self.assertEqual(address.addressType, 'INTERNAL') def test_ex_create_backend(self): # Note: this is an internal object, no API call is made
