Skip to content

Commit f6809b6

Browse files
committed
Update test_stage_base
1 parent f675e8d commit f6809b6

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

test/model/devices/stages/test_stage_base.py

-17
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,6 @@ def test_stage_base_attributes(self):
5454
assert hasattr(stage_base, 'f_pos')
5555
assert hasattr(stage_base, 'theta_pos')
5656
assert hasattr(stage_base, 'position_dict')
57-
assert hasattr(stage_base, 'int_x_pos')
58-
assert hasattr(stage_base, 'int_y_pos')
59-
assert hasattr(stage_base, 'int_z_pos')
60-
assert hasattr(stage_base, 'int_f_pos')
61-
assert hasattr(stage_base, 'int_theta_pos')
62-
assert hasattr(stage_base, 'int_position_dict')
63-
assert hasattr(stage_base, 'int_x_pos_offset')
64-
assert hasattr(stage_base, 'int_y_pos_offset')
65-
assert hasattr(stage_base, 'int_z_pos_offset')
66-
assert hasattr(stage_base, 'int_f_pos_offset')
67-
assert hasattr(stage_base, 'int_theta_pos_offset')
6857
assert hasattr(stage_base, 'x_max')
6958
assert hasattr(stage_base, 'y_max')
7059
assert hasattr(stage_base, 'z_max')
@@ -74,14 +63,8 @@ def test_stage_base_attributes(self):
7463
assert hasattr(stage_base, 'z_min')
7564
assert hasattr(stage_base, 'f_min')
7665
assert hasattr(stage_base, 'theta_min')
77-
assert hasattr(stage_base, 'x_rot_position')
78-
assert hasattr(stage_base, 'y_rot_position')
79-
assert hasattr(stage_base, 'z_rot_position')
80-
assert hasattr(stage_base, 'startfocus')
8166
assert hasattr(stage_base, 'create_position_dict') and \
8267
callable(getattr(stage_base, 'create_position_dict'))
83-
assert hasattr(stage_base, 'create_internal_position_dict') and \
84-
callable(getattr(stage_base, 'create_internal_position_dict'))
8568

8669
if __name__ == '__main__':
8770
unittest.main()

0 commit comments

Comments
 (0)