Skip to content

Commit 62cbcd4

Browse files
committed
Clarify test intention
1 parent 77bd2e9 commit 62cbcd4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/api_build_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,25 +202,25 @@ def test_build_isolation(self):
202202
pass
203203

204204
@requires_api_version('1.38')
205-
def test_build_with_buildkit(self):
205+
def test_build_buildkit_heredoc(self):
206206
script = io.BytesIO('\n'.join([
207207
'FROM scratch',
208208
'COPY <<EOF greeting.txt',
209209
'hello world',
210210
'EOF'
211211
]).encode('ascii'))
212212

213-
self.tmp_imgs.append('buildkit')
213+
self.tmp_imgs.append('buildkit-heredoc')
214214

215215
stream = self.client.build(
216-
fileobj=script, tag='buildkit',
216+
fileobj=script, tag='buildkit-heredoc',
217217
version='2'
218218
)
219219

220220
for _chunk in stream:
221221
pass
222222

223-
assert self.client.inspect_image('buildkit')
223+
assert self.client.inspect_image('buildkit-heredoc')
224224

225225
@requires_api_version('1.23')
226226
def test_build_labels(self):

0 commit comments

Comments
 (0)