File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def load(fname):
1313 return json .load (f )
1414
1515
16- class TestModule (TestCase ):
16+ class Case (TestCase ):
1717 _MODULE = ""
1818
1919 def test_methods (self ):
@@ -24,20 +24,20 @@ def test_methods(self):
2424 if not fun .startswith ("_" ):
2525 if v ["module" ] == self ._MODULE :
2626 res , status , msg = getattr (client , fun )(** v ["kwargs" ])
27- print (f"METHOD: { fun } , STATUS: { status } " )
27+ print (f"METHOD: { fun } , RTYPE: { type ( res ) } , STATUS: { status } " )
2828
2929
30- class TestAccounts (TestModule ):
30+ class TestAccounts (Case ):
3131 _MODULE = "accounts"
3232
3333
34- class TestContracts (TestModule ):
34+ class TestContracts (Case ):
3535 _MODULE = "contracts"
3636
3737
38- class TestTokens (TestModule ):
38+ class TestTokens (Case ):
3939 _MODULE = "tokens"
4040
4141
42- class TestTransactions (TestModule ):
42+ class TestTransactions (Case ):
4343 _MODULE = "transactions"
You can’t perform that action at this time.
0 commit comments