Skip to content

Commit 32d44f9

Browse files
committed
Minor fixes
1 parent 93fb481 commit 32d44f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
#
3434
Publish:
3535
runs-on: ubuntu-latest
36-
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main'))
36+
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main')
3737
steps:
3838
- uses: actions/checkout@v3
3939
with:

binderhub/tests/test_repoproviders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ def test_spec_with_no_suggestion(self):
367367

368368
def test_spec_with_suggestion(self):
369369
spec = "short/suggestion"
370-
error = f'Did you mean "{spec}/master"?'
370+
error = f'Did you mean "{spec}/main"?'
371371
with self.assertRaisesRegex(ValueError, error):
372372
user, repo, unresolved_ref = tokenize_spec(spec)
373373

0 commit comments

Comments
 (0)