Skip to content

Commit

Permalink
fix: Missing comma in api_build_test.py
Browse files Browse the repository at this point in the history
* The comma has been most probably left out unintentionally, leading to string concatenation between the two consecutive lines. It has been found automatically using a regular expression.
  • Loading branch information
mrshu committed Jan 29, 2022
1 parent a48a5a9 commit ca702c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ssh/api_build_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def test_build_container_with_target(self):
'RUN mkdir -p /tmp/test',
'RUN touch /tmp/silence.tar.gz',
'FROM alpine:latest',
'WORKDIR /root/'
'WORKDIR /root/',
'COPY --from=first /tmp/silence.tar.gz .',
'ONBUILD RUN echo "This should not be in the final image"'
]).encode('ascii'))
Expand Down

0 comments on commit ca702c5

Please sign in to comment.