From 4cdb37e41ba39f5bd6ba8b4489d07bf30c6957a0 Mon Sep 17 00:00:00 2001 From: etorres4 Date: Thu, 17 Mar 2022 23:04:05 -0700 Subject: [PATCH] General code cleanup --- tests/test_pacman.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_pacman.py b/tests/test_pacman.py index 52c6baa..582f1c7 100755 --- a/tests/test_pacman.py +++ b/tests/test_pacman.py @@ -1,4 +1,4 @@ -import packaging_scripts.pacmanconf as pacmanconf +import packaging_scripts.pacman as pacman import re import unittest @@ -10,7 +10,7 @@ from unittest.mock import MagicMock, patch # ========== Constants ========== -TESTING_MODULE = f"packaging_scripts.pacmanconf" +TESTING_MODULE = f"packaging_scripts.pacman" # ========== Unit Tests ==========