Skip to content

Commit 5d3f2a1

Browse files
committed
test: Reformat python imports to aid scripted diff
backports bitcoin/bitcoin@1111bb9
1 parent f5f6c3c commit 5d3f2a1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

test/functional/feature_notifications.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
import os
77

88
from test_framework.test_framework import PivxTestFramework
9-
from test_framework.util import assert_equal, wait_until, connect_nodes_bi
9+
from test_framework.util import (
10+
assert_equal,
11+
wait_until,
12+
connect_nodes_bi,
13+
)
1014

1115
class NotificationsTest(PivxTestFramework):
1216
def set_test_params(self):

test/functional/rpc_rawtransaction.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@
1313
"""
1414

1515
from test_framework.test_framework import PivxTestFramework
16-
from test_framework.util import *
16+
from test_framework.util import (
17+
assert_equal,
18+
assert_raises_rpc_error,
19+
connect_nodes_bi,
20+
Decimal,
21+
)
1722

1823

1924
class multidict(dict):

0 commit comments

Comments
 (0)