From 5d7737b7eba0d56b62f53c13459e59b8173d20cd Mon Sep 17 00:00:00 2001 From: Christian Hopps Date: Thu, 19 Dec 2024 08:13:04 -0600 Subject: [PATCH] test: fix label ordering on error diff report Signed-off-by: Christian Hopps --- tests/helpers/python/frrtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/python/frrtest.py b/tests/helpers/python/frrtest.py index 3faa2a6f13..4682bd8786 100644 --- a/tests/helpers/python/frrtest.py +++ b/tests/helpers/python/frrtest.py @@ -163,8 +163,8 @@ class TestRefMismatch(Exception): difflib.unified_diff( self.reftext.splitlines(), self.outtext.splitlines(), - "outtext", "reftext", + "outtext", lineterm="", ) )