From b5faa7f6be2ffe46cbb9455858dbc1e0c06d17ae Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 2 May 2020 09:32:00 +0200 Subject: [PATCH] Fixed RBA tests. --- testdata/ruby/dbReaders.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testdata/ruby/dbReaders.rb b/testdata/ruby/dbReaders.rb index b17092355..eb33d4c61 100644 --- a/testdata/ruby/dbReaders.rb +++ b/testdata/ruby/dbReaders.rb @@ -345,9 +345,9 @@ class DBReaders_TestClass < TestBase conf.separate_groups = true assert_equal(conf.separate_groups, true) - assert_equal(conf.consider_map_file, true) - conf.consider_map_file = false - assert_equal(conf.consider_map_file, false) + assert_equal(conf.map_file, "") + conf.map_file = "xyz.map" + assert_equal(conf.map_file, "xyz.map") assert_equal(conf.lef_files.join(","), "") conf.lef_files = [ "u.lef", "v.lef" ]