From 8538dd5dcb8d1f0982bb407c8ad3eeef2fe14264 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 26 Aug 2025 15:09:31 +0200 Subject: [PATCH] Update tests/test_utils_debug.py --- tests/test_utils_debug.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_utils_debug.py b/tests/test_utils_debug.py index c7733e4c0..924757fab 100644 --- a/tests/test_utils_debug.py +++ b/tests/test_utils_debug.py @@ -4,7 +4,7 @@ import os sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) from slic.utils.debug import * from unittest.mock import patch -''' + class A(Traceable): def __init__(self, a, b, c=None, d=None, **kwargs): self.a = a @@ -63,5 +63,4 @@ def test_traceable(cls, entry, expected): ) def test_short_repr(value, cutoff, expected): - assert short_repr(value, cutoff) == expected -''' \ No newline at end of file + assert short_repr(value, cutoff) == expected \ No newline at end of file