From 4557822df3eba63e8e0ff3717a32a4615e9708f6 Mon Sep 17 00:00:00 2001 From: Andrew Rosen Date: Thu, 12 Oct 2023 15:49:10 -0700 Subject: [PATCH] Fix code comment --- parsl/tests/test_python_apps/test_lifted.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsl/tests/test_python_apps/test_lifted.py b/parsl/tests/test_python_apps/test_lifted.py index a544cacd31..d83c48815c 100644 --- a/parsl/tests/test_python_apps/test_lifted.py +++ b/parsl/tests/test_python_apps/test_lifted.py @@ -67,7 +67,7 @@ def test_returns_a_class(): # correctly assert returns_a_class().result().a == "X" - # check that the deferred __getitem__ functionality works, + # check that the deferred __getattr__ functionality works, # allowing [] to be used on an AppFuture assert returns_a_class().a.result() == "X"