Skip to content

Commit

Permalink
Change menu prompt, widen current specs a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
cibomahto committed Aug 8, 2013
1 parent a96b117 commit 59a5097
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TestRig/TestProgram/Menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def Display(self):
""" Run an interactive menu """
while True:
self.DrawMenu()
s = raw_input("type a selection and press enter ")
s = raw_input("Type a selection or press enter to run all tests")
try:
if len(s) == 0:
n = 0
Expand Down
8 changes: 4 additions & 4 deletions TestRig/TestProgram/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def test_030_dutConnected(self):
def test_040_dutConnectedCurrent(self):
self.i.DisplayMessage("Checking connected current...")

MIN_CONNECTED_CURRENT = 25
MAX_CONNECTED_CURRENT = 36
MIN_CONNECTED_CURRENT = 20
MAX_CONNECTED_CURRENT = 40

current = self.testRig.measure('DUT_CURRENT')

Expand All @@ -102,8 +102,8 @@ def test_040_dutConnectedCurrent(self):
def test_045_LedsConnectedCurrent(self):
self.i.DisplayMessage("Checking LEDs connected current...")

MIN_CONNECTED_CURRENT = 35
MAX_CONNECTED_CURRENT = 45
MIN_CONNECTED_CURRENT = 30
MAX_CONNECTED_CURRENT = 50

self.testRig.enableRelay('EN_LED_OUT')

Expand Down

0 comments on commit 59a5097

Please sign in to comment.