From 2036b001fb6bf51eabaa04f1c736e183e73b46a8 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Mon, 4 Aug 2025 15:41:39 +0200 Subject: [PATCH] Update tests/test_utils_namespace.py --- tests/test_utils_namespace.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_utils_namespace.py b/tests/test_utils_namespace.py index 86344f4c..6073e80c 100644 --- a/tests/test_utils_namespace.py +++ b/tests/test_utils_namespace.py @@ -17,10 +17,10 @@ def test_namespace_pretty_repr_mixed_and_nested(): output = repr(ns) expected = """\ -laser: namespace(power='5W', wavelength='1030nm', mode='CW') -detector: namespace(model='X-500') -stage: namespace() +detector: namespace(model='X-500') experiment: namespace(id=42, meta=namespace(author='Dr. X', approved=True)) +laser: namespace(power='5W', wavelength='1030nm', mode='CW') +stage: namespace() """ if not output.endswith("\n"):