From b0365c09dcc72b8ef5578fd7ef96a278e19ef7fc Mon Sep 17 00:00:00 2001 From: Serwan Asaad Date: Sat, 13 Jul 2024 21:06:45 +0200 Subject: [PATCH] update changelog + typo --- CHANGELOG.md | 1 + tests/instantiation/test_instantiation.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae90013d..003b1734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Fix quam object instantiation error when a parameter type uses pipe operator - Allow int keys to be serialised / loaded in QuAM using JSONSerialiser - Fix type `OctaveUpconverter.triggered_reersed` -> `OctaveUpconverter.triggered_reversed` +- Fix tuples not being instantiated properly in specific circumstances ## [0.3.3] diff --git a/tests/instantiation/test_instantiation.py b/tests/instantiation/test_instantiation.py index fe956024..d6072722 100644 --- a/tests/instantiation/test_instantiation.py +++ b/tests/instantiation/test_instantiation.py @@ -322,7 +322,7 @@ def test_instance_attr_literal_fail(): ) -def test_isntantiate_tuple(): +def test_instantiate_tuple(): @quam_dataclass class TestQuamTuple(QuamComponent): tuple_val: Tuple[int, str]