summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/fixtures/layouts/bad_pipelines1.yaml2
-rw-r--r--tests/fixtures/layouts/bad_template3.yaml3
-rw-r--r--tests/test_layoutvalidator.py2
3 files changed, 1 insertions, 6 deletions
diff --git a/tests/fixtures/layouts/bad_pipelines1.yaml b/tests/fixtures/layouts/bad_pipelines1.yaml
index 4207a2c2a..da909333c 100644
--- a/tests/fixtures/layouts/bad_pipelines1.yaml
+++ b/tests/fixtures/layouts/bad_pipelines1.yaml
@@ -1,4 +1,2 @@
pipelines:
-projects:
- - name: foo
diff --git a/tests/fixtures/layouts/bad_template3.yaml b/tests/fixtures/layouts/bad_template3.yaml
index 70412b86d..54697c462 100644
--- a/tests/fixtures/layouts/bad_template3.yaml
+++ b/tests/fixtures/layouts/bad_template3.yaml
@@ -1,8 +1,5 @@
# Template refers to an unexisting pipeline
-pipelines:
- # We have no pipelines at all
-
project-templates:
- name: template-generic
unexisting-pipeline: # pipeline does not exist
diff --git a/tests/test_layoutvalidator.py b/tests/test_layoutvalidator.py
index 7e9f1d5aa..5a8fc4622 100644
--- a/tests/test_layoutvalidator.py
+++ b/tests/test_layoutvalidator.py
@@ -57,7 +57,7 @@ class TestLayoutValidator(testtools.TestCase):
error = str(e)
print ' ', error
if error in errors:
- raise Exception("Error has already beed tested: %s" %
+ raise Exception("Error has already been tested: %s" %
error)
else:
errors.append(error)