diff options
author | Filipp Lepalaan <f@230.to> | 2013-09-08 21:29:09 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-09-08 21:29:09 +0300 |
commit | 56be452b6d8485e598ce9f5a532f5adb548f5c2c (patch) | |
tree | 9cb6f12bf31ba920ae73b5da79433910ee22028c /tests | |
parent | edb0fc6fa64d24119964e074d0740790c7fe73bd (diff) | |
download | py-gsxws-56be452b6d8485e598ce9f5a532f5adb548f5c2c.tar.gz py-gsxws-56be452b6d8485e598ce9f5a532f5adb548f5c2c.tar.bz2 py-gsxws-56be452b6d8485e598ce9f5a532f5adb548f5c2c.zip |
Decoupling Product from GsxObject
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_gsxws.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index 19c8d86..1018440 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -128,7 +128,7 @@ class TestActivation(TestCase): self.assertIs(type(self.data.unlocked), bool) self.assertTrue(self.data.unlocked) - p = Product() + p = Product('XXXXXXXXXXX') self.assertTrue(p.is_unlocked(self.data)) |