Skip to content

Commit fcdd13a

Browse files
authored
Merge pull request #570 from AllenNeuralDynamics/bug-569-mesospim-misspelled
bug-569-mesospim-misspelled
2 parents 3df0601 + 1e60655 commit fcdd13a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/aind_data_schema/data_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class Platform(Enum, metaclass=AbbreviationEnumMeta):
153153
FIP = BaseName(name="Frame-projected independent-fiber photometry platform", abbreviation="FIP")
154154
HCR = BaseName(name="Hybridization chain reaction platform", abbreviation="HCR")
155155
HSFP = BaseName(name="Hyperspectral fiber photometry platform", abbreviation="HSFP")
156-
MESOSPM = BaseName(name="MesoSPIM platform", abbreviation="mesoSPIM")
156+
MESOSPIM = BaseName(name="MesoSPIM platform", abbreviation="mesoSPIM")
157157
MERFISH = BaseName(name="MERFISH platform", abbreviation="MERFISH")
158158
MRI = BaseName(name="Magnetic resonance imaging platform", abbreviation="MRI")
159159
MULTIPLANE_OPHYS = BaseName(name="Multiplane optical physiology platform", abbreviation="multiplane-ophys")

tests/test_data_description.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ def test_abbreviation_enums(self):
180180
# Tests that Platform constructed as expected
181181
self.assertEqual(Platform.ECEPHYS, Platform("ECEPHYS"))
182182
self.assertEqual(Platform.ECEPHYS, Platform("ecephys"))
183-
self.assertEqual(Platform.MESOSPM, Platform("MESOSPM"))
184-
self.assertEqual(Platform.MESOSPM, Platform("mesoSPIM"))
183+
self.assertEqual(Platform.MESOSPIM, Platform("MESOSPIM"))
184+
self.assertEqual(Platform.MESOSPIM, Platform("mesoSPIM"))
185185
self.assertEqual(Platform.MULTIPLANE_OPHYS, Platform("MULTIPLANE_OPHYS"))
186186
self.assertEqual(Platform.MULTIPLANE_OPHYS, Platform("multiplane-ophys"))
187187

0 commit comments

Comments
 (0)