File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1313
1414from buildpack import util
1515from buildpack .core import runtime , security
16- from buildpack .stage import set_up_directory_structure
1716from lib .m2ee .version import MXVersion
1817
1918
@@ -152,12 +151,12 @@ def _create_self_signed_cert(): # pylint: disable=no-method-argument
152151
153152 @mock .patch .dict (os .environ , CERTIFICATE_ENV )
154153 def test_selfsigned_certificate_less_mx720 (self ):
155- set_up_directory_structure ( ) # make sure .local exists in test
154+ util . mkdir_p ( ".local" ) # make sure .local exists in test
156155 result = security .get_client_certificates (MXVersion (7.16 ))
157156 assert "WebServiceClientCertificates" in result
158157
159158 @mock .patch .dict (os .environ , CERTIFICATE_ENV )
160159 def test_selfsigned_certificate_greq_mx720 (self ):
161- set_up_directory_structure ( ) # make sure .local exists in test
160+ util . mkdir_p ( ".local" ) # make sure .local exists in test
162161 result = security .get_client_certificates (MXVersion (7.23 ))
163162 assert "ClientCertificateUsages" in result
You can’t perform that action at this time.
0 commit comments