From dcbaa21d907f1b2d9b72dae52508b042c53d83bb Mon Sep 17 00:00:00 2001 From: beucismis Date: Tue, 13 Apr 2021 12:18:53 +0300 Subject: [PATCH] Update test.py --- test/test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/test.py b/test/test.py index b49f018..81db814 100644 --- a/test/test.py +++ b/test/test.py @@ -1,11 +1,10 @@ import os import pytest -from backupill import Pill +from backupill import * this_dir, this_filename = os.path.split(__file__) def test_generate_backup(): - pill = Pill(asc_file=os.path.join(this_dir, "test.asc")) - pill.generate_backup() + generate_backup(asc_file=os.path.join(this_dir, "test.asc"))