diff options
Diffstat (limited to 'python/wpt/test.py')
-rw-r--r-- | python/wpt/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/wpt/test.py b/python/wpt/test.py index f4744ae0030..f30e01eb79c 100644 --- a/python/wpt/test.py +++ b/python/wpt/test.py @@ -647,7 +647,7 @@ def setUpModule(): def setup_mock_repo(repo_name, local_repo): subprocess.check_output( ["cp", "-R", "-p", os.path.join(TESTS_DIR, repo_name), local_repo.path]) - local_repo.run("init", "-b", "master") + local_repo.run("init", "-b", "main") local_repo.run("add", ".") local_repo.run("commit", "-a", "-m", "Initial commit") |