Skip to content

Commit fa8bf28

Browse files
committed
feat(schema) use live schema
1 parent 30ee44b commit fa8bf28

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

staxapp/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Config:
3232
org_id = None
3333
auth = None
3434
expiration = None
35-
load_live_schema = False
35+
load_live_schema = True
3636

3737
platform = (sysinfo.platform(),)
3838
python_version = (sysinfo.python_version(),)

tests/test_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ def testInvalidStaxClient(self):
4343
with self.assertRaises(ValidationException):
4444
StaxClient("fake")
4545

46-
def testLoadLiveSchema(self):
46+
def testLoadOldSchema(self):
4747
"""
48-
Test loading live schema
48+
Test loading Old schema
4949
"""
5050
self.Config = Config
51-
self.Config.load_live_schema = True
51+
self.Config.load_live_schema = False
5252
client = StaxClient("accounts")
5353
self.assertTrue(client._initialized)
5454

0 commit comments

Comments
 (0)