Skip to content

Commit a67f024

Browse files
committed
Remove assert
1 parent fb47f5c commit a67f024

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

readthedocs/rtd_tests/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ def make_test_git():
3232
env['GIT_DIR'] = pjoin(directory, '.git')
3333
chdir(directory)
3434
log.info(check_output(['git', 'init'] + [directory], env=env))
35-
output = check_output(['git', 'add', '.'], env=env)
36-
log.info(output)
37-
assert 'Please tell me who you are.' not in output.decode()
35+
log.info(check_output(['git', 'add', '.'], env=env))
3836
log.info(check_output(['git', 'commit', '-m"init"'], env=env))
3937
log.info(check_output(['git', 'checkout', '-b', 'submodule'], env=env))
4038
# Add repo itself as submodule

0 commit comments

Comments
 (0)