Skip to content

Commit

Permalink
Merge branch 'master' into latest-codegen-master
Browse files Browse the repository at this point in the history
  • Loading branch information
anniel-stripe authored Jan 18, 2024
2 parents 73c62c6 + c1a7c80 commit 918c9e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
from typing import Any
import stripe
import subprocess
import sys


def assert_output(code: str, expected: str) -> None:
process = subprocess.Popen(
["python", "-c", f"import stripe; print({code})"],
[sys.executable, "-c", f"import stripe; print({code})"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
Expand Down

0 comments on commit 918c9e4

Please sign in to comment.