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

Commit 0c80aa4

Browse files
committed
fix indentation
1 parent eec770c commit 0c80aa4

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

test/test_create_extrinsics.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,17 @@ def test_compatibility_polkadot_runtime(self):
4444
self.assertLessEqual(
4545
runtime_data['result']['specVersion'], type_reg.get('runtime_id'), 'Current runtime is incompatible'
4646
)
47-
"""
47+
48+
"""
4849
def test_compatibility_kusama_runtime(self):
4950
type_reg = load_type_registry_preset("kusama")
5051
5152
runtime_data = self.kusama_substrate.rpc_request('state_getRuntimeVersion', [])
5253
self.assertLessEqual(
5354
runtime_data['result']['specVersion'], type_reg.get('runtime_id'), 'Current runtime is incompatible'
5455
)
55-
"""
56+
"""
57+
5658
def test_create_balance_transfer(self):
5759
# Create new keypair
5860
mnemonic = Keypair.generate_mnemonic()

test/test_type_registry.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ def setUpClass(cls):
3636
address_type=2,
3737
type_registry_preset='kusama'
3838
)
39-
"""
40-
def test_type_registry_compatibility(self):
4139

40+
"""
41+
def test_type_registry_compatibility(self):
4242
for scale_type in self.substrate.get_type_registry():
4343
obj = RuntimeConfiguration().get_decoder_class(scale_type)
4444
4545
self.assertIsNotNone(obj, '{} not supported'.format(scale_type))
46-
"""
46+
"""
4747

4848
class PolkadotTypeRegistryTestCase(unittest.TestCase):
4949

0 commit comments

Comments
 (0)