Skip to content

Commit

Permalink
support qcodes 0.37
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Jan 30, 2023
1 parent 772f832 commit 3d5b983
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion qcodes_contrib_drivers/tests/test_Keysight_M3201A.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from qcodes.instrument_drivers.test import DriverTestCase
try:
from qcodes.tests.driver_test_case import DriverTestCase
except ImportError:
# qcodes < 0.37
from qcodes.instrument_drivers.test import DriverTestCase
import unittest

try:
Expand Down

0 comments on commit 3d5b983

Please sign in to comment.