diff --git a/binarycpython/tests/test_custom_logging.py b/binarycpython/tests/test_custom_logging.py
index 717b4a7509f1753e31899ffcb85d1aa5cd5bd2e5..62c5be37044f9eac622ed553924ff14005d0f6b3 100644
--- a/binarycpython/tests/test_custom_logging.py
+++ b/binarycpython/tests/test_custom_logging.py
@@ -129,7 +129,7 @@ class test_custom_logging(unittest.TestCase):
 
         input_2 = "version"
         output_2 = from_binary_c_config(BINARY_C_CONFIG, input_2)
-        self.assertEqual(output_2, "2.1.7", msg="binary_c version doesnt match")
+        self.assertIn(output_2, ["2.1.7", "2.2pre1"], msg="binary_c version doesnt match")
 
     def test_return_compilation_dict(self):
         with Capturing() as output:
diff --git a/binarycpython/tests/test_spacing_functions.py b/binarycpython/tests/test_spacing_functions.py
index a61f7251225a6e92396682072d7b80c97048291e..7920a63b18196afdce95f8db37a5860be54cbc99 100644
--- a/binarycpython/tests/test_spacing_functions.py
+++ b/binarycpython/tests/test_spacing_functions.py
@@ -25,7 +25,7 @@ class test_spacing_functions(unittest.TestCase):
 
         const_return = const(1, 10, 10)
         self.assertTrue(
-            (const_return == np.linspace(1, 10, 10)).all(),
+            (const_return == np.linspace(1, 10, 10+1)).all(),
             msg="Output didn't contain SINGLE_STAR_LIFETIME",
         )
 
diff --git a/binarycpython/utils/grid_options_defaults.py b/binarycpython/utils/grid_options_defaults.py
index 4fb5fe1b7870884a5e02bbe9204300c6574e2982..7f80a0e4f3392c7d621f9cbe8db0766172a0ac9a 100644
--- a/binarycpython/utils/grid_options_defaults.py
+++ b/binarycpython/utils/grid_options_defaults.py
@@ -786,8 +786,8 @@ def write_grid_options_to_rst_file(output_file: str) -> None:
         # Moe & di Stefano options:
         print_option_descriptions(
             f,
-            moe_distefano_default_options,
-            moe_distefano_default_options_description,
+            moe_di_stefano_default_options,
+            moe_di_stefano_default_options_description,
             "Moe & di Stefano sampler options",
             "The following options are meant to be changed by the user.",
         )