Skip to content

Commit

Permalink
try fix for test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Nov 5, 2023
1 parent 157a07c commit 3dc7c5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_processor_from_files():
def test_processor_from_folders():
"""Test generation of the processor from a folder"""
config = {"core": {"loader": "mpes"}}
dataframe, timed_dataframe, _ = loader.read_dataframe(files=files)
dataframe, timed_dataframe, _ = loader.read_dataframe(folders=df_folder)
processor = SedProcessor(
folder=df_folder,
config=config,
Expand All @@ -109,7 +109,7 @@ def test_processor_from_folders():
def test_processor_from_runs():
"""Test generation of the processor from runs"""
config = {"core": {"loader": "mpes"}}
dataframe, timed_dataframe, _ = loader.read_dataframe(files=files)
dataframe, timed_dataframe, _ = loader.read_dataframe(folders=df_folder, runs=runs)
processor = SedProcessor(
folder=df_folder,
config=config,
Expand Down

0 comments on commit 3dc7c5f

Please sign in to comment.