From 1b5097050bcccf20406ef3897d8cb24912e35bb2 Mon Sep 17 00:00:00 2001 From: hakril Date: Mon, 20 May 2024 18:50:30 +0200 Subject: [PATCH] Remove breakpoint in test_security_descriptor_from_unicode_file() --- tests/test_security.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_security.py b/tests/test_security.py index 6bcc92d..49dbe2f 100644 --- a/tests/test_security.py +++ b/tests/test_security.py @@ -34,7 +34,6 @@ def test_security_descriptor_from_binary(binsd): def test_security_descriptor_from_unicode_file(tmpdir): TARGET_FILENAME = u"내 한국은 최고의 한국.txt" - import pdb;pdb.set_trace() TARGET_PATH = os.path.join(tmpdir, TARGET_FILENAME) with open(TARGET_PATH, "w") as f: f.write("Hello Test")