Skip to content

Commit

Permalink
test: Remove unnecessary join
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jul 19, 2021
1 parent 28453d7 commit 653877a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commands/test_compile.py
Expand Up @@ -16,7 +16,7 @@ def _remove_package_metadata(filenames):
data['publisher'] = {}
data['packages'] = []
outputs.append(data)
return ''.join(json_dumps(data) + '\n')
return json_dumps(data) + '\n'


# Test with packages and with releases.
Expand Down

0 comments on commit 653877a

Please sign in to comment.