Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pauladkisson committed Dec 17, 2024
1 parent 2d5ecbf commit a9b6962
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path
from shutil import rmtree
from tempfile import mkdtemp
from typing import Dict, Union
from typing import Dict, Optional, Union

import numpy as np
from hdmf.testing import TestCase
Expand Down Expand Up @@ -186,7 +186,9 @@ class TestAlignmentConverter(NWBConverter):
NIDQ=MockSpikeGLXNIDQInterface, Trials=CsvTimeIntervalsInterface, Behavior=MockBehaviorEventInterface
)

def temporally_align_data_interfaces(self):
def temporally_align_data_interfaces(
self, metadata: Optional[dict] = None, conversion_options: Optional[dict] = None
):
unaligned_trial_start_times = self.data_interface_objects["Trials"].get_original_timestamps(
column="start_time"
)
Expand Down

0 comments on commit a9b6962

Please sign in to comment.