Skip to content

Commit

Permalink
Rename test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen committed Oct 12, 2023
1 parent d215f7f commit ee62661
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions parsl/tests/test_python_apps/test_lifted.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def returns_a_list():


@python_app
def returns_a_set():
def returns_a_tuple():
return ("X", "Y")


Expand Down Expand Up @@ -50,15 +50,15 @@ def test_returns_a_list():
assert returns_a_list()[0].result() == "X"


def test_returns_a_set():
def test_returns_a_tuple():

# precondition that returns_a_set behaves
# precondition that returns_a_tuple behaves
# correctly
assert returns_a_set().result()[0] == "X"
assert returns_a_tuple().result()[0] == "X"

# check that the deferred __getitem__ functionality works,
# allowing [] to be used on an AppFuture
assert returns_a_set()[0].result() == "X"
assert returns_a_tuple()[0].result() == "X"


def test_returns_a_class():
Expand Down

0 comments on commit ee62661

Please sign in to comment.