Skip to content

Commit

Permalink
fix empty string for print end arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Esgrove committed Nov 12, 2024
1 parent 5c75a50 commit 2b2a55a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:

- name: Lookup with Python library
run: |
diff <(python -c "from n_vault import Vault; print(Vault().lookup('secret-python-library'), end="", flush=True)") <(echo -n sha-${{github.sha}})
diff <(python -c "from n_vault import Vault; print(Vault().lookup('secret-python-library'), end='', flush=True)") <(echo -n sha-${{github.sha}})
- name: List with Python library
run: python -c "from n_vault import Vault; print('\n'.join(Vault().list_all()))" | wc -l | grep -q "1"
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:

- name: Lookup with Python library
run: |
diff <(python -c "from n_vault import Vault; print(Vault().lookup('secret-python-library'), end="", flush=True)") <(echo -n sha-${{github.sha}})
diff <(python -c "from n_vault import Vault; print(Vault().lookup('secret-python-library'), end='', flush=True)") <(echo -n sha-${{github.sha}})
- name: List with Python library
run: python -c "from n_vault import Vault; print('\n'.join(Vault().list_all()))" | wc -l | grep -q "1"
Expand Down

0 comments on commit 2b2a55a

Please sign in to comment.