Skip to content

Commit fe34d14

Browse files
committed
Merge branch 'master' into python3
2 parents 92fba25 + 5f2b341 commit fe34d14

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Test/test_scan_settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ def testSettingsBasedSet(self):
145145
setScanSettings(MyScanSettings())
146146

147147
cmd = SettingsBasedSet('My:Motor1', 42)
148-
self.assertEquals(str(cmd), "Set('My:Motor1', 42, completion=True, readback='My:Motor1.RBV', timeout=100)")
148+
self.assertEquals(str(cmd), "Set('My:Motor1', 42, completion=True, timeout=100, readback='My:Motor1.RBV', tolerance=0.100000)")
149149

150150
cmd = SettingsBasedSet('Unknown:Motor1', 42)
151-
self.assertEquals(str(cmd), "Set('Unknown:Motor1', 42, readback='Unknown:Motor1.RBV')")
151+
self.assertEquals(str(cmd), "Set('Unknown:Motor1', 42, readback='Unknown:Motor1.RBV', tolerance=0.100000)")
152152

153153
cmd = SettingsBasedSet('Unknown:Motor1', 42, readback=False)
154154
self.assertEquals(str(cmd), "Set('Unknown:Motor1', 42)")
@@ -191,4 +191,4 @@ def testSettingsBasedWait(self):
191191

192192
if __name__ == "__main__":
193193
unittest.main()
194-
194+

0 commit comments

Comments
 (0)