Fix test to use new `load_account()` location
parent
482403c887
commit
c780164f69
|
@ -8,6 +8,7 @@
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from piker import config
|
from piker import config
|
||||||
|
from piker.accounting import load_account
|
||||||
|
|
||||||
|
|
||||||
def test_root_conf_networking_section(
|
def test_root_conf_networking_section(
|
||||||
|
@ -23,7 +24,7 @@ def test_root_conf_networking_section(
|
||||||
def test_account_file_default_empty(
|
def test_account_file_default_empty(
|
||||||
tmpconfdir: Path,
|
tmpconfdir: Path,
|
||||||
):
|
):
|
||||||
conf, path = config.load_account(
|
conf, path = load_account(
|
||||||
'kraken',
|
'kraken',
|
||||||
'paper',
|
'paper',
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue