From 2f72b025b5ebfeb579c1f808f485d2d3b36cb8e1 Mon Sep 17 00:00:00 2001 From: Ruben Vorderman Date: Wed, 18 Oct 2023 12:12:38 +0200 Subject: [PATCH] Correct small comment typo --- tests/test_piped.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_piped.py b/tests/test_piped.py index e3365f7..c512412 100644 --- a/tests/test_piped.py +++ b/tests/test_piped.py @@ -260,7 +260,7 @@ def test_concatenated_gzip_function(): reason="Pipe size modifications not available on this platform.", ) def test_pipesize_changed(tmp_path, monkeypatch): - # Higher compression level to avoid openingen with threaded opener + # Higher compression level to avoid opening with threaded opener with xopen(tmp_path / "hello.gz", "wb", compresslevel=5) as f: assert isinstance(f, PipedCompressionWriter) assert fcntl.fcntl(f._file.fileno(), fcntl.F_GETPIPE_SZ) == _MAX_PIPE_SIZE