Skip to content

Commit

Permalink
Strip trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed May 18, 2024
1 parent 79e20d4 commit 5fb2d63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/smoketests/test_messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

def test_error_leader():
mess = ConsoleMessenger()

res = mess.error_leader()
isinstance(res, str)


def test_warning_leader():
mess = ConsoleMessenger()

res = mess.warning_leader()
assert isinstance(res, str)

Expand Down
6 changes: 3 additions & 3 deletions tests/smoketests/test_popgenism.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def test_generate_pop_tree():
populations = FragmentedPopulations(1)

res = populations.generate_pop_tree("")
res = populations.generate_pop_tree("")
assert isinstance(res, dendropy.Tree)

def test_generate_gene_tree():
Expand All @@ -18,11 +18,11 @@ def test_generate_gene_tree():
def test_generate_sequences():
# TODO: https://github.com/jeetsukumaran/DendroPy/issues/179#issue-1965884280
# populations = FragmentedPopulations(1)
# populations.generate_sequences("2X2")
# populations.generate_sequences("2X2")
pass

def test_pop_gen_tree():
tree = dendropy.Tree()

res = pop_gen_tree(tree=tree)
assert isinstance(res, dendropy.Tree)

0 comments on commit 5fb2d63

Please sign in to comment.