summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbst-marge-bot <marge-bot@buildstream.build>2019-11-12 11:27:22 +0000
committerbst-marge-bot <marge-bot@buildstream.build>2019-11-12 11:27:22 +0000
commit149c2c26470c42bbc4d3ee38fbcb3a94078b26df (patch)
treed8ca1607ccde35d7cd5af20d2981dff0353b9a72
parentbc9dff62c572a2f8bb0fffc07d6a6058576ed7fc (diff)
parent7b6847cd29d9b19dd6fd11dd73d89417f2dd207e (diff)
downloadbuildstream-149c2c26470c42bbc4d3ee38fbcb3a94078b26df.tar.gz
Merge branch 'chandan/fix-implicit-string-concat' into 'master'
tests/frontend/completions: Fix implicit string concatenation See merge request BuildStream/buildstream!1702
-rw-r--r--tests/frontend/completions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/completions.py b/tests/frontend/completions.py
index 5df873666..3352ddcc9 100644
--- a/tests/frontend/completions.py
+++ b/tests/frontend/completions.py
@@ -86,8 +86,8 @@ PROJECT_ELEMENTS = [
]
INVALID_ELEMENTS = [
- "target.foo"
- "target.bst.bar"
+ "target.foo",
+ "target.bst.bar",
]
MIXED_ELEMENTS = PROJECT_ELEMENTS + INVALID_ELEMENTS