From 246b69e375315d55d8b0f1dde2c04fa5d792b55f Mon Sep 17 00:00:00 2001 From: dgelessus Date: Tue, 21 Jan 2020 22:32:44 +0100 Subject: [PATCH] Remove accidental empty comment from test_rsrcfork.py --- tests/test_rsrcfork.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_rsrcfork.py b/tests/test_rsrcfork.py index 2dab61b..3fdf26e 100644 --- a/tests/test_rsrcfork.py +++ b/tests/test_rsrcfork.py @@ -149,7 +149,6 @@ class ResourceFileReadTests(unittest.TestCase): @unittest.skipUnless(RESOURCE_FORKS_SUPPORTED, RESOURCE_FORKS_NOT_SUPPORTED_MESSAGE) def test_textclipping_path_resource_fork(self) -> None: with tempfile.NamedTemporaryFile() as tempf: - # with TEXTCLIPPING_RSRC_FILE.open("rb") as dataf: with open_resource_fork(pathlib.Path(tempf.name), "wb") as rsrcf: shutil.copyfileobj(dataf, rsrcf)