diff options
author | Dan Williams <dcbw@redhat.com> | 2009-10-11 11:20:36 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2009-10-11 11:20:36 -0700 |
commit | b7dc5f00da4a5bdcd0f70d5d5177a01197958706 (patch) | |
tree | dcc04bac919616f497cc89aab530e635ca521968 /test | |
parent | 21391286fc166901041de09abcb317dda2efc5e4 (diff) |
mm-test: fix cdma registration state parsing
Diffstat (limited to 'test')
-rwxr-xr-x | test/mm-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mm-test.py b/test/mm-test.py index 9a7be763..8fc68ca3 100755 --- a/test/mm-test.py +++ b/test/mm-test.py @@ -40,7 +40,7 @@ def get_reg_state(state): return "registered (roaming unknown)" elif state == 2: return "registered on home network" - elif state == 4: + elif state == 3: return "registered on roaming network" else: return "unknown" |