Fix naming hyphenation from boilerplate

This commit is contained in:
Luke Murphy
2019-07-08 13:04:00 +02:00
parent c3e75cad74
commit 4d9e548945
7 changed files with 11 additions and 17 deletions

View File

@ -4,6 +4,6 @@
def test_version_fails_gracefully(mocker):
target = 'pkg_resources.get_distribution'
with mocker.patch(target, side_effect=Exception()):
from merkle-tree-stream.__init__ import __version__
from merkle_tree_stream.__init__ import __version__
assert __version__ == 'unknown'