Skip to content

Commit

Permalink
Change RunLiveNoRecord to Live
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Nov 1, 2016
1 parent 31ec5ce commit 578457c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-common/testutils/common_recordingtestcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TestMode(object):
none = 'None' # this will be for unit test, no need for any recordings
playback = 'Playback'
record = 'Record'
run_live_no_record = 'RunLiveNoRecord'
live = 'Live'

@staticmethod
def is_playback(mode):
Expand All @@ -35,7 +35,7 @@ def need_recordingfile(mode):
@staticmethod
def need_real_credentials(mode):
mode_lower = mode.lower()
return mode_lower == TestMode.run_live_no_record.lower() or mode_lower == TestMode.record.lower()
return mode_lower == TestMode.live.lower() or mode_lower == TestMode.record.lower()


class RecordingTestCase(ExtendedTestCase):
Expand Down

0 comments on commit 578457c

Please sign in to comment.