Skip to content

Commit 5f1e962

Browse files
committed
Small fix in assert statement in test_rosette_api.py
1 parent 3b5b588 commit 5f1e962

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docker/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ENTRYPOINT ["/tini", "--"]
1313
RUN apt-get update && \
1414
apt-get -y install \
1515
wget \
16+
curl \
1617
libssl-dev \
1718
libffi-dev \
1819
python-pip \

tests/test_rosette_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def test_responseHeaders():
179179
body=body, status=200, content_type="application/json")
180180
test = RosetteTest("eng-doc-entities")
181181
result = test.api.entities(test.params)
182-
assert ("responseHeaders" in result) == True
182+
assert "responseHeaders" in result
183183

184184

185185
@httpretty.activate

0 commit comments

Comments
 (0)