Skip to content

Commit 47a4776

Browse files
committed
core-workfolow -> core-workflow
1 parent e09216f commit 47a4776

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

cherry_picker/test_cherry_picker.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ def test_load_full_config(tmp_git_repo_dir, git_add, git_commit):
478478
relative_config_path = ".cherry_picker.toml"
479479
tmp_git_repo_dir.join(relative_config_path).write("""\
480480
team = "python"
481-
repo = "core-workfolow"
481+
repo = "core-workflow"
482482
check_sha = "5f007046b5d4766f971272a0cc99f8461215c1ec"
483483
default_branch = "devel"
484484
""")
@@ -490,7 +490,7 @@ def test_load_full_config(tmp_git_repo_dir, git_add, git_commit):
490490
scm_revision + ":" + relative_config_path,
491491
{
492492
"check_sha": "5f007046b5d4766f971272a0cc99f8461215c1ec",
493-
"repo": "core-workfolow",
493+
"repo": "core-workflow",
494494
"team": "python",
495495
"fix_commit_msg": True,
496496
"default_branch": "devel",
@@ -503,7 +503,7 @@ def test_load_full_config(tmp_git_repo_dir, git_add, git_commit):
503503
def test_load_partial_config(tmp_git_repo_dir, git_add, git_commit):
504504
relative_config_path = ".cherry_picker.toml"
505505
tmp_git_repo_dir.join(relative_config_path).write("""\
506-
repo = "core-workfolow"
506+
repo = "core-workflow"
507507
""")
508508
git_add(relative_config_path)
509509
git_commit("Add config")
@@ -513,7 +513,7 @@ def test_load_partial_config(tmp_git_repo_dir, git_add, git_commit):
513513
f"{scm_revision}:{relative_config_path}",
514514
{
515515
"check_sha": "7f777ed95a19224294949e1b4ce56bbffcb1fe9f",
516-
"repo": "core-workfolow",
516+
"repo": "core-workflow",
517517
"team": "python",
518518
"fix_commit_msg": True,
519519
"default_branch": "main",
@@ -527,7 +527,7 @@ def test_load_config_no_head_sha(tmp_git_repo_dir, git_add, git_commit):
527527
relative_config_path = ".cherry_picker.toml"
528528
tmp_git_repo_dir.join(relative_config_path).write("""\
529529
team = "python"
530-
repo = "core-workfolow"
530+
repo = "core-workflow"
531531
check_sha = "5f007046b5d4766f971272a0cc99f8461215c1ec"
532532
default_branch = "devel"
533533
""")
@@ -541,7 +541,7 @@ def test_load_config_no_head_sha(tmp_git_repo_dir, git_add, git_commit):
541541
":" + relative_config_path,
542542
{
543543
"check_sha": "5f007046b5d4766f971272a0cc99f8461215c1ec",
544-
"repo": "core-workfolow",
544+
"repo": "core-workflow",
545545
"team": "python",
546546
"fix_commit_msg": True,
547547
"default_branch": "devel",
@@ -770,7 +770,7 @@ def test_paused_flow(tmp_git_repo_dir, git_add, git_commit):
770770
relative_file_path = "some.toml"
771771
tmp_git_repo_dir.join(relative_file_path).write(f"""\
772772
check_sha = "{initial_scm_revision}"
773-
repo = "core-workfolow"
773+
repo = "core-workflow"
774774
""")
775775
git_add(relative_file_path)
776776
git_commit("Add a config")

0 commit comments

Comments
 (0)