From ab95a1c45484baffbf62270a824dcbdd75eefee5 Mon Sep 17 00:00:00 2001 From: Isaac Cheng <47993930+IsaacCheng9@users.noreply.github.com> Date: Mon, 25 Dec 2023 15:28:21 +0000 Subject: [PATCH] Update imports in test_finance, remove unused test files --- tests/test_finance.py | 2 +- tests/test_portfolio.py | 0 tests/test_transactions.py | 2 -- 3 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 tests/test_portfolio.py delete mode 100644 tests/test_transactions.py diff --git a/tests/test_finance.py b/tests/test_finance.py index 27f1411..b25a1c3 100644 --- a/tests/test_finance.py +++ b/tests/test_finance.py @@ -5,7 +5,7 @@ import yfinance as yf from requests import exceptions -from src import finance, app +from src.trading_portfolio_tracker import finance, app DB_PATH = "resources/test.db" diff --git a/tests/test_portfolio.py b/tests/test_portfolio.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_transactions.py b/tests/test_transactions.py deleted file mode 100644 index 7e3d89d..0000000 --- a/tests/test_transactions.py +++ /dev/null @@ -1,2 +0,0 @@ -import pytest -import coverage