File tree Expand file tree Collapse file tree
examples/chem-sync-local-flask/tests/unit/local_app/benchling_app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,12 +49,12 @@ def test_create_molecule(self) -> None:
4949 # These are generated as random valid values unless manually overridden
5050 # Since we didn't override them but we're verifying the entire MoleculeCreate stub for correctness,
5151 # pull the mocked values from the mock_config_store
52- weight_field_config_value = mock_config_store . \
53- config_by_path (["Molecule Schema" , "Molecular Weight" ]). \
54- required ().value_str ()
55- mono_isotopic_field_config_value = mock_config_store . \
56- config_by_path (["Molecule Schema" , "MonoIsotopic" ]). \
57- required ().value_str ()
52+ weight_field_config_value = mock_config_store \
53+ . config_by_path (["Molecule Schema" , "Molecular Weight" ])\
54+ . required ().value_str ()
55+ mono_isotopic_field_config_value = mock_config_store \
56+ . config_by_path (["Molecule Schema" , "MonoIsotopic" ])\
57+ . required ().value_str ()
5858 schema_id = mock_config_store .config_by_path (["Molecule Schema" ]).required ().value_str ()
5959 expected_argument = MoleculeCreate (
6060 chemical_structure = molecule_structure ,
You can’t perform that action at this time.
0 commit comments