Skip to content

Commit 35352fa

Browse files
committed
Fix . and slash
1 parent 0e360b6 commit 35352fa

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

examples/chem-sync-local-flask/tests/unit/local_app/benchling_app/test_molecules.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)