summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-23 16:37:02 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-23 16:37:02 +0900
commitf7713400145f85c1c8386e552e5fc9c559a7bce3 (patch)
tree606510275cb5b6fc949ec10d6ae0e911a1075481
parent1598d35e867949a7b21279fe9f5982e6f658165e (diff)
downloadbuildstream-f7713400145f85c1c8386e552e5fc9c559a7bce3.tar.gz
tests/pipeline/preflight-error: Fixing typo in error string formatting
-rw-r--r--tests/pipeline/preflight-error/errorplugin/preflighterror.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pipeline/preflight-error/errorplugin/preflighterror.py b/tests/pipeline/preflight-error/errorplugin/preflighterror.py
index 59c49e012..0eee463ad 100644
--- a/tests/pipeline/preflight-error/errorplugin/preflighterror.py
+++ b/tests/pipeline/preflight-error/errorplugin/preflighterror.py
@@ -9,7 +9,7 @@ class PreflightErrorSource(Source):
def preflight(self):
# Raise a preflight error unconditionally
- raise SourceError("{}: Unsatisfied requirements in preflight, raising this error",
+ raise SourceError("Unsatisfied requirements in preflight, raising this error",
reason="the-preflight-error")
def get_unique_key(self):