From c780164f699842b6395eaa5cf7cb603420e6b782 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 28 Jun 2023 14:17:56 -0400 Subject: [PATCH] Fix test to use new `load_account()` location --- tests/test_accounting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_accounting.py b/tests/test_accounting.py index f5a3bd8d..dacffb98 100644 --- a/tests/test_accounting.py +++ b/tests/test_accounting.py @@ -8,6 +8,7 @@ from pathlib import Path from piker import config +from piker.accounting import load_account def test_root_conf_networking_section( @@ -23,7 +24,7 @@ def test_root_conf_networking_section( def test_account_file_default_empty( tmpconfdir: Path, ): - conf, path = config.load_account( + conf, path = load_account( 'kraken', 'paper', )