16589: Fixes test check.
authorLucas Di Pentima <lucas@di-pentima.com.ar>
Fri, 10 Jul 2020 16:17:22 +0000 (13:17 -0300)
committerLucas Di Pentima <lucas@di-pentima.com.ar>
Fri, 10 Jul 2020 16:17:22 +0000 (13:17 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas@di-pentima.com.ar>

sdk/python/tests/fed-migrate/check.py

index 12678dbacd100da8111f85baeb8d3b9e0afc4d01..c231cc0735795cae9577f9e52f7e5f4bae449bb3 100644 (file)
@@ -72,7 +72,7 @@ for i in range(2, 9):
 found = False
 for u in users["items"]:
     if (u["username"] == "case9" and u["email"] == "case9@test" and
-        u["first_name"] == ("Case%d" % i) and u["last_name"] == "Testuser" and
+        u["first_name"] == "Case9" and u["last_name"] == "Testuser" and
         u["uuid"] == by_username[u["username"]] and u["is_active"] is False):
         found = True
 assert found