Merge "git-repo: change "pytest" to "tests"" into main
diff --git a/recipes/recipes/git-repo.expected/basic.json b/recipes/recipes/git-repo.expected/basic.json
index 7342afe..1c75585 100644
--- a/recipes/recipes/git-repo.expected/basic.json
+++ b/recipes/recipes/git-repo.expected/basic.json
@@ -161,9 +161,9 @@
         "hostname": "rdbhost"
       }
     },
-    "name": "Run pytest"
+    "name": "Run tests"
   },
   {
     "name": "$result"
   }
-]
\ No newline at end of file
+]
diff --git a/recipes/recipes/git-repo.py b/recipes/recipes/git-repo.py
index df8c30e..f96aef9 100644
--- a/recipes/recipes/git-repo.py
+++ b/recipes/recipes/git-repo.py
@@ -56,7 +56,7 @@
 
     with api.context(cwd=api.path['start_dir'].join(project_name)):
         # TODO(b/266734831): Use tox to run tests.
-        api.step('Run pytest', ['vpython3', 'run_tests', '-k', expr, '-vv'])
+        api.step('Run tests', ['vpython3', 'run_tests', '-k', expr, '-vv'])
 
 
 def GenTests(api):