diff options
author | Filipp Lepalaan <filipp@mac.com> | 2018-04-28 16:18:29 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2018-04-28 16:18:29 +0300 |
commit | 51b5bff6e1b2f239932b9452d608bfee28c20ac1 (patch) | |
tree | 781518854db91965b81532ebc7fc05765a4d811f /gsxws | |
parent | 79bc69470d8d907cd0f8e4c71788576a31899cad (diff) | |
download | py-gsxws-51b5bff6e1b2f239932b9452d608bfee28c20ac1.tar.gz py-gsxws-51b5bff6e1b2f239932b9452d608bfee28c20ac1.tar.bz2 py-gsxws-51b5bff6e1b2f239932b9452d608bfee28c20ac1.zip |
Better tests
Diffstat (limited to 'gsxws')
-rw-r--r-- | gsxws/products.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws/products.py b/gsxws/products.py index a656f98..10ecc80 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -188,7 +188,7 @@ class Product(object): """ Returns True if FMiP status is active, False otherwise """ - return 'Find My iPhone is active' in self.fmip_status + return 'find my iphone is active' in self.fmip_status.lower() def is_unlocked(self, ad=None): """ |