Skip to content

Commit

Permalink
Rename and refactor launch_transactions_generator to TransactionGener…
Browse files Browse the repository at this point in the history
…atorsLauncher.
  • Loading branch information
oschwaldp-oci committed Aug 30, 2023
1 parent d26a930 commit 9f32850
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/TestHarness/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ configure_file(queries.py . COPYONLY)
configure_file(transactions.py . COPYONLY)
configure_file(libc.py . COPYONLY)
configure_file(interfaces.py . COPYONLY)
configure_file(launch_transaction_generators.py . COPYONLY)
configure_file(TransactionGeneratorsLauncher.py . COPYONLY)
configure_file(logging.py . COPYONLY)
configure_file(depresolver.py . COPYONLY)
configure_file(launcher.py . COPYONLY)
Expand Down
2 changes: 1 addition & 1 deletion tests/TestHarness/Cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from .Node import BlockType
from .Node import Node
from .WalletMgr import WalletMgr
from .launch_transaction_generators import TransactionGeneratorsLauncher, TpsTrxGensConfig
from .TransactionGeneratorsLauncher import TransactionGeneratorsLauncher, TpsTrxGensConfig
from .launcher import cluster_generator
try:
from .libc import unshare, CLONE_NEWNET
Expand Down
4 changes: 2 additions & 2 deletions tests/TestHarness/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__all__ = ['Node', 'Cluster', 'WalletMgr', 'launcher', 'logging', 'depresolver', 'testUtils', 'TestHelper', 'queries', 'transactions', 'accounts', 'launch_transaction_generators', 'TransactionGeneratorsLauncher', 'TpsTrxGensConfig', 'core_symbol']
__all__ = ['Node', 'Cluster', 'WalletMgr', 'launcher', 'logging', 'depresolver', 'testUtils', 'TestHelper', 'queries', 'transactions', 'accounts', 'TransactionGeneratorsLauncher', 'TpsTrxGensConfig', 'core_symbol']

from .Cluster import Cluster
from .Node import Node
Expand All @@ -9,5 +9,5 @@
from .testUtils import Utils
from .Node import ReturnType
from .TestHelper import TestHelper
from .launch_transaction_generators import TransactionGeneratorsLauncher, TpsTrxGensConfig
from .TransactionGeneratorsLauncher import TransactionGeneratorsLauncher, TpsTrxGensConfig
from .core_symbol import CORE_SYMBOL

0 comments on commit 9f32850

Please sign in to comment.