Skip to content

Commit b2daf64

Browse files
committed
fix for enterprise auth
1 parent fc4e7e5 commit b2daf64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/setup-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def handle_test_env() -> None:
168168
LOGGER.info("Writing keytab")
169169
keytab = base64.b64decode(os.environ["KEYTAB_BASE64"])
170170
keytab_file = ROOT / ".evergreen/drivers.keytab"
171-
with keytab_file.open("wb", newline="\n") as fid:
171+
with keytab_file.open("wb") as fid:
172172
fid.write(keytab)
173173
principal = os.environ["PRINCIPAL"]
174174
LOGGER.info("Running kinit")

0 commit comments

Comments
 (0)