From 48197b358716806a1cb629e46c037be993905526 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Fri, 17 Jun 2022 19:31:08 +0200 Subject: [PATCH] env --- tests/scraper_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scraper_test.py b/tests/scraper_test.py index 2fe2cf1..c864bf1 100644 --- a/tests/scraper_test.py +++ b/tests/scraper_test.py @@ -11,7 +11,7 @@ def test_login_fail(): def test_login_success(): global vks - vks = VkScraper(os.getenv("VK_USERNAME"), os.getenv("VK_PASSWORD")) + vks = VkScraper(os.environ["VK_USERNAME"], os.environ["VK_PASSWORD"]) def test_scrape_empty_urll():