We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ee44b commit fa8bf28Copy full SHA for fa8bf28
2 files changed
staxapp/config.py
@@ -32,7 +32,7 @@ class Config:
32
org_id = None
33
auth = None
34
expiration = None
35
- load_live_schema = False
+ load_live_schema = True
36
37
platform = (sysinfo.platform(),)
38
python_version = (sysinfo.python_version(),)
tests/test_client.py
@@ -43,12 +43,12 @@ def testInvalidStaxClient(self):
43
with self.assertRaises(ValidationException):
44
StaxClient("fake")
45
46
- def testLoadLiveSchema(self):
+ def testLoadOldSchema(self):
47
"""
48
- Test loading live schema
+ Test loading Old schema
49
50
self.Config = Config
51
- self.Config.load_live_schema = True
+ self.Config.load_live_schema = False
52
client = StaxClient("accounts")
53
self.assertTrue(client._initialized)
54
0 commit comments