From 96cf0b640d1ef369f4118017dfce3ccee076ad34 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 22 Feb 2026 23:50:32 +0100 Subject: [PATCH] More tests for enhanced features mode in GDS2 --- src/plugins/streamers/gds2/unit_tests/dbGDS2WriterTests.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/streamers/gds2/unit_tests/dbGDS2WriterTests.cc b/src/plugins/streamers/gds2/unit_tests/dbGDS2WriterTests.cc index 89cb449c5..17f6c5c52 100644 --- a/src/plugins/streamers/gds2/unit_tests/dbGDS2WriterTests.cc +++ b/src/plugins/streamers/gds2/unit_tests/dbGDS2WriterTests.cc @@ -1927,10 +1927,10 @@ TEST(205_extended_props) { TempPropertiesRepository temp_pr; - db::GDS2WriterOptions gds2_opt; - gds2_opt.extended_features = false; db::SaveLayoutOptions options; - options.set_options (gds2_opt); + EXPECT_EQ (options.get_option_by_name ("extended_features").to_bool (), true); + options.set_option_by_name ("extended_features", false); + EXPECT_EQ (options.get_option_by_name ("extended_features").to_bool (), false); db::PropertiesSet ps1; ps1.insert (tl::Variant ("prop_name"), db::DBox (0, 0, 1.5, 2.5));