Skip to content

Commit

Permalink
ref: fix monkeypatching of stderr
Browse files Browse the repository at this point in the history
something different about python 3.13 causes this to fail on .flush()
  • Loading branch information
asottile-sentry committed Nov 14, 2024
1 parent 00ea404 commit 3751452
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class TestGenerateControlsiloUrls(TestCase):
def call_command(self, *args, **kwargs):
out = StringIO()
call_command("generate_controlsilo_urls", *args, stdout=out, stderr=StringIO, **kwargs)
call_command("generate_controlsilo_urls", *args, stdout=out, stderr=StringIO(), **kwargs)
return out.getvalue()

def test_skip_includes(self):
Expand Down

0 comments on commit 3751452

Please sign in to comment.