Skip to content

Commit

Permalink
remove mock until we move to new pynwb permanently
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jan 31, 2024
1 parent 9d97d1d commit d5f26a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_inspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from pynwb import NWBFile, NWBHDF5IO, TimeSeries
from pynwb.file import TimeIntervals, Subject
from pynwb.behavior import SpatialSeries, Position
from pynwb.testing.mock.file import mock_NWBFile
from hdmf.common import DynamicTable
from natsort import natsorted

Expand Down Expand Up @@ -731,8 +730,9 @@ def test_check_unique_identifiers_fail(self):

def test_dandi_config_in_vitro_injection():
"""Test that a subject_id starting with 'invitro' excludes meaningless CRITICAL-elevated subject checks."""
nwbfile = mock_NWBFile(
subject=Subject(subject_id="invitroCaMPARI3", description="A detailed description about the in vitro setup.")
nwbfile = make_minimal_nwbfile()
nwbfile.subject = Subject(
subject_id="invitroCaMPARI3", description="A detailed description about the in vitro setup."
)
config = load_config(filepath_or_keyword="dandi")
importance_threshold = "CRITICAL"
Expand Down

0 comments on commit d5f26a3

Please sign in to comment.