From 65caa47e43d827db6772cd2faba15acc5583a2b0 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Wed, 6 May 2026 16:04:08 +0200 Subject: [PATCH] test_attach: fix io test after uri went a parameter Change-Id: Iad7da73d1abae549bbba83acd2a5f8199c19f908 --- test/test_attach.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_attach.py b/test/test_attach.py index 5d943d87..b885cb23 100644 --- a/test/test_attach.py +++ b/test/test_attach.py @@ -82,7 +82,7 @@ def test_attach_hasio_uri(): srv = ServerStub() m = HasIOTest('m', logger, {'description': '', 'uri': 'abc'}, srv) - assert srv.secnode.modules['m_io']._uri == 'abc' + assert srv.secnode.modules['m_io']._uri == {'value': 'abc'} assert m.io == srv.secnode.modules['m_io'] # two modules with the same IO should use the same io module m2 = HasIOTest('m', logger, {'description': '', 'uri': 'abc'}, srv)