Skip to content

Commit

Permalink
Fix incorrect compare
Browse files Browse the repository at this point in the history
  • Loading branch information
slacrherbst committed Sep 20, 2023
1 parent 335289c commit 63f4cf2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_rate.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
#logger = logging.getLogger('pyrogue')
#logger.setLevel(logging.DEBUG)

MaxCycles = { 'remoteSetRate' : 5.0e9,
'remoteSetNvRate' : 4.5e9,
'remoteGetRate' : 4.0e9,
'localSetRate' : 5.9e9,
'localGetRate' : 3.8e9,
'linkedSetRate' : 6.0e9,
'linkedGetRate' : 4.8e9 }
MaxCycles = { 'remoteSetRate' : 5.9e9,
'remoteSetNvRate' : 5.5e9,
'remoteGetRate' : 4.8e9,
'localSetRate' : 6.8e9,
'localGetRate' : 4.6e9,
'linkedSetRate' : 6.9e9,
'linkedGetRate' : 5.5e9 }

class TestDev(pr.Device):

Expand Down

0 comments on commit 63f4cf2

Please sign in to comment.