Skip to content

Commit 269a0d7

Browse files
committed
fix checkin silent bug and associated test
1 parent 40983a8 commit 269a0d7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/pybritive/commands/checkin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@build_britive
99
@britive_options(names='tenant,token,silent,passphrase,federation_provider')
1010
@click_smart_profile_argument
11-
def checkin(ctx, tenant, token, passphrase, federation_provider, profile):
11+
def checkin(ctx, tenant, token, silent, passphrase, federation_provider, profile):
1212
"""Checkin a profile.
1313
1414
This command takes 1 required argument `PROFILE`. This should be a string representation of the profile

tests/test_0800_checkin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
def test_checkout_json(runner, cli, profile):
2+
def test_checkin(runner, cli, profile):
33
result = runner.invoke(cli, ['checkin', profile])
44
assert result.exit_code == 0
55
assert result.output == ''

0 commit comments

Comments
 (0)