Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 5860879

Browse files
committed
comment Polkadot test cases
1 parent 0c80aa4 commit 5860879

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

test/test_create_extrinsics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def setUpClass(cls):
3737
type_registry_preset='polkadot'
3838
)
3939

40+
"""
4041
def test_compatibility_polkadot_runtime(self):
4142
type_reg = load_type_registry_preset("polkadot")
4243
@@ -45,7 +46,6 @@ def test_compatibility_polkadot_runtime(self):
4546
runtime_data['result']['specVersion'], type_reg.get('runtime_id'), 'Current runtime is incompatible'
4647
)
4748
48-
"""
4949
def test_compatibility_kusama_runtime(self):
5050
type_reg = load_type_registry_preset("kusama")
5151

test/test_type_registry.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,15 @@ def setUpClass(cls):
5555
type_registry_preset='polkadot'
5656
)
5757

58+
"""
5859
def test_type_registry_compatibility(self):
5960
6061
for scale_type in self.substrate.get_type_registry():
6162
6263
obj = RuntimeConfiguration().get_decoder_class(scale_type)
6364
6465
self.assertIsNotNone(obj, '{} not supported'.format(scale_type))
66+
"""
6567

6668

6769
if __name__ == '__main__':

0 commit comments

Comments
 (0)