build-unit-test-docker: upgrade meson to 1.6.1

Tested: run-unit-test-docker.sh runs correctly

Change-Id: Ifa4bc74d707d1c0b12bf9b147fd03e0e3c075262
Signed-off-by: Ewelina Walkusz <ewelinax.walkusz@intel.com>
diff --git a/scripts/unit-test.py b/scripts/unit-test.py
index 448c0da..e5ee8e2 100755
--- a/scripts/unit-test.py
+++ b/scripts/unit-test.py
@@ -26,8 +26,8 @@
 # that would be broken if we didn't include it.
 from mesonbuild import interpreter  # noqa: F401
 from mesonbuild import optinterpreter, options
-from mesonbuild.mesonlib import OptionKey
 from mesonbuild.mesonlib import version_compare as meson_version_compare
+from mesonbuild.options import OptionKey, OptionStore
 
 
 class DepTree:
@@ -854,7 +854,8 @@
         Parameters:
         options_file        The file containing options
         """
-        oi = optinterpreter.OptionInterpreter("")
+        store = OptionStore()
+        oi = optinterpreter.OptionInterpreter(store, "")
         oi.process(options_file)
         return oi.options