Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small change to test
  • Loading branch information
axshani committed Jun 20, 2022
commit 09d6c70fa765b60f9f56123a2c12bd6376ecf2be
2 changes: 1 addition & 1 deletion e2e_tests/transaction_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def test_codecs_transactions():

for name, obj in inspect.getmembers(umt):
try:
if 'Transaction' in name and 'DTO' in name and 'Base' not in name and name != 'TransactionDTO':
if 'TransactionDTO' in name and 'Base' not in name and name != 'TransactionDTO':
classes.append(name.replace('DTO', ''))
except Exception as e:
print(e)
Expand Down