Skip to content

Commit 775b44f

Browse files
Fix tests
1 parent d4e285e commit 775b44f

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

test/model/devices/galvo/test_galvo_base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def setUp(self) -> None:
5454
waveform_constants_path,
5555
rest_api_path,
5656
waveform_templates_path,
57+
gui_configuration_path,
5758
) = get_configuration_paths()
5859

5960
self.configuration = load_configs(
@@ -63,6 +64,7 @@ def setUp(self) -> None:
6364
waveform_constants=waveform_constants_path,
6465
rest_api_config=rest_api_path,
6566
waveform_templates=waveform_templates_path,
67+
gui_configuration_path=gui_configuration_path,
6668
)
6769

6870
verify_configuration(self.manager, self.configuration)

test/model/devices/galvo/test_galvo_ni.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def setUp(self) -> None:
5555
waveform_constants_path,
5656
rest_api_path,
5757
waveform_templates_path,
58+
gui_configuration_path,
5859
) = get_configuration_paths()
5960

6061
self.configuration = load_configs(
@@ -64,6 +65,7 @@ def setUp(self) -> None:
6465
waveform_constants=waveform_constants_path,
6566
rest_api_config=rest_api_path,
6667
waveform_templates=waveform_templates_path,
68+
gui_configuration_path=gui_configuration_path,
6769
)
6870
verify_configuration(self.manager, self.configuration)
6971
verify_waveform_constants(self.manager, self.configuration)

test/model/devices/galvo/test_galvo_synthetic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def setUp(self) -> None:
5252
waveform_constants_path,
5353
rest_api_path,
5454
waveform_templates_path,
55+
gui_configuration_path,
5556
) = get_configuration_paths()
5657

5758
self.configuration = load_configs(
@@ -61,6 +62,7 @@ def setUp(self) -> None:
6162
waveform_constants=waveform_constants_path,
6263
rest_api_config=rest_api_path,
6364
waveform_templates=waveform_templates_path,
65+
gui_configuration=gui_configuration_path,
6466
)
6567
verify_configuration(self.manager, self.configuration)
6668
verify_waveform_constants(self.manager, self.configuration)

0 commit comments

Comments
 (0)