Skip to content

Commit e7fd73c

Browse files
authored
Fix test (#2021)
1 parent bc08fd9 commit e7fd73c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nidmm/system_tests/test_system_nidmm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ def test_multi_point_acquisition(self, session):
4242

4343
# Attribute tests
4444
def test_vi_string_attribute(self, session):
45-
assert session.serial_number == 'FFFFFFFF'
45+
assert session.instrument_model == 'NI PXIe-4082'
4646
try:
47-
session.serial_number = 'FFFFFFFA'
47+
session.instrument_model = 'NI PXIe-4081'
4848
except nidmm.Error as e:
4949
assert e.code == -1074135027 # Attribute is read-only
5050

0 commit comments

Comments
 (0)