From: Dwight Engen Date: Wed, 7 May 2014 13:52:00 +0000 (-0400) Subject: python3: remove assert since hwaddr isn't set by the download template X-Git-Tag: lxc-1.1.0.alpha1~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b648faeca47475682679caa750c224e6a5d7cff;p=thirdparty%2Flxc.git python3: remove assert since hwaddr isn't set by the download template Signed-off-by: Dwight Engen Acked-by: Stéphane Graber --- diff --git a/src/python-lxc/examples/api_test.py b/src/python-lxc/examples/api_test.py index 9f935d70c..79521970a 100755 --- a/src/python-lxc/examples/api_test.py +++ b/src/python-lxc/examples/api_test.py @@ -91,7 +91,6 @@ print("Testing the networking") # A few basic checks of the current state assert("name" in container.get_keys("lxc.network.0")) assert(len(container.network) == 1) -assert(container.network[0].hwaddr.startswith("00:16:3e")) ## Starting the container print("Starting the container")