summaryrefslogtreecommitdiff
path: root/xnt/tests/maketests.py
diff options
context:
space:
mode:
Diffstat (limited to 'xnt/tests/maketests.py')
-rw-r--r--xnt/tests/maketests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/xnt/tests/maketests.py b/xnt/tests/maketests.py
index abf458b..c022b12 100644
--- a/xnt/tests/maketests.py
+++ b/xnt/tests/maketests.py
@@ -17,7 +17,6 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-import os
import unittest
import xnt
import xnt.build.make
@@ -49,7 +48,9 @@ class AntTests(unittest.TestCase):
def test_passing_flags(self):
"""Test ant with passing flags"""
- result = xnt.build.make.ant(target="test", path="temp", flags=["-verbose"])
+ result = xnt.build.make.ant(target="test",
+ path="temp",
+ flags=["-verbose"])
self.assertEqual(result, 0)
def test_pass_var(self):