File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ):
You can’t perform that action at this time.
0 commit comments