X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=test%2Fresources%2Flinux%2Fnetns%2Fnetnsclient.py;h=13823c9b2ef81e2d77534494eb6ea1f31855f731;hb=039fbd9629d7570d4c175a5448d24badcd0f3aba;hp=8fb7c0f5a2196793805e9a196f90c7912700b49f;hpb=817fc4e07d55f1925a52a7744f1f4b3ec24a8c98;p=nepi.git diff --git a/test/resources/linux/netns/netnsclient.py b/test/resources/linux/netns/netnsclient.py index 8fb7c0f5..13823c9b 100755 --- a/test/resources/linux/netns/netnsclient.py +++ b/test/resources/linux/netns/netnsclient.py @@ -4,9 +4,8 @@ # Copyright (C) 2013 INRIA # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation; # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,6 +20,8 @@ # Test based on netns test/test_core.py file test_run_ping_routing test # +from __future__ import print_function + from nepi.resources.netns.netnsserver import run_server from nepi.resources.linux.netns.netnsclient import LinuxNetNSClient @@ -158,7 +159,7 @@ class LinuxNetNSClientTest(unittest.TestCase): s1 = stdout1.read() s2 = stdout2.read() - print s1, s2 + print(s1, s2) expected = "1 packets transmitted, 1 received, 0% packet loss" self.assertTrue(s1.find(expected) > -1)