Skip to content

Commit

Permalink
Merge pull request #342 from giffels/fix/deployment-tests-typer
Browse files Browse the repository at this point in the history
Fix hash credentials test for new typer version
  • Loading branch information
giffels authored Apr 25, 2024
2 parents fda5a8c + 39fc5cd commit 3521938
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ Rene Caspart <rene.caspart@cern.ch>
Leon Schuhmacher <ji7635@partner.kit.edu>
R. Florian von Cube <florian.voncube@gmail.com>
Benjamin Rottler <benjamin.rottler@cern.ch>
Sebastian Wozniewski <sebastian.wozniewski@uni-goettingen.de>
mschnepf <matthias.schnepf@kit.edu>
swozniewski <sebastian.wozniewski@uni-goettingen.de>
Alexander Haas <104835302+haasal@users.noreply.github.com>
mschnepf <maschnepf@schnepf-net.de>
Dirk Sammel <dirk.sammel@cern.ch>
Expand Down
4 changes: 2 additions & 2 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.. Created by changelog.py at 2024-02-05, command
.. Created by changelog.py at 2024-04-16, command
'/Users/giffler/.cache/pre-commit/repoecmh3ah8/py_env-python3.12/bin/changelog docs/source/changes compile --categories Added Changed Fixed Security Deprecated --output=docs/source/changelog.rst'
based on the format of 'https://keepachangelog.com/'
#########
CHANGELOG
#########

[Unreleased] - 2024-02-05
[Unreleased] - 2024-04-16
=========================

Fixed
Expand Down
2 changes: 1 addition & 1 deletion tests/rest_t/hash_credentials_t/test_hash_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def setUp(self) -> None:
def test_hash_credentials(self):
result = self.runner.invoke(self.app)
self.assertNotEqual(result.exit_code, 0)
self.assertTrue("Error: Missing argument 'PASSWORD'." in result.stdout)
self.assertIn("Missing argument 'PASSWORD'.", result.stdout)

result = self.runner.invoke(self.app, "test_password")
self.assertEqual(result.exit_code, 0)
Expand Down

0 comments on commit 3521938

Please sign in to comment.