Skip to content
Snippets Groups Projects
Commit e1e2fcc7 authored by Holger's avatar Holger
Browse files

Fix unit test for offline case

parent 08a7c3b3
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
......@@ -830,6 +830,9 @@ class Steem(object):
@property
def is_hive(self):
config = self.get_config()
if config is None:
return False
return 'HIVE_CHAIN_ID' in self.get_config()
def set_default_account(self, account):
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.5'
version = '0.22.6'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.5'
version = '0.22.6'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.5'
version = '0.22.6'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.5'
version = '0.22.6'
......@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.22.5'
VERSION = '0.22.6'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment