summaryrefslogtreecommitdiff
path: root/morphlib/buildorder_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildorder_tests.py')
-rw-r--r--morphlib/buildorder_tests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/morphlib/buildorder_tests.py b/morphlib/buildorder_tests.py
index 32a14120..ab1a7e1c 100644
--- a/morphlib/buildorder_tests.py
+++ b/morphlib/buildorder_tests.py
@@ -1,14 +1,14 @@
# Copyright (C) 2012 Codethink Limited
-#
+#
# 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; version 2 of the License.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@@ -77,7 +77,7 @@ class BuildOrderTests(unittest.TestCase):
artifact3.add_dependency(artifact2)
order = morphlib.buildorder.BuildOrder(
- [artifact1, artifact2, artifact3])
+ [artifact1, artifact2, artifact3])
self.assertEqual(len(order.groups), 3)
self.assertEqual(order.groups[0], [artifact1])
@@ -97,7 +97,7 @@ class BuildOrderTests(unittest.TestCase):
artifact3.add_dependency(artifact1)
order = morphlib.buildorder.BuildOrder(
- [artifact1, artifact2, artifact3])
+ [artifact1, artifact2, artifact3])
self.assertEqual(len(order.groups), 2)
self.assertEqual(order.groups[0], [artifact1])
@@ -116,7 +116,7 @@ class BuildOrderTests(unittest.TestCase):
artifact3.add_dependency(artifact2)
order = morphlib.buildorder.BuildOrder(
- [artifact1, artifact2, artifact3])
+ [artifact1, artifact2, artifact3])
self.assertEqual(len(order.groups), 2)
self.assertEqual(order.groups[0], [artifact1, artifact2])