From a829588b51ff63cf44fa101fdb7c12011f9b0a88 Mon Sep 17 00:00:00 2001 From: Vladislav Date: Wed, 21 May 2025 22:10:18 +0300 Subject: [PATCH] test pipeline 3 --- test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_app.py b/test_app.py index 0430ffa..0172aba 100644 --- a/test_app.py +++ b/test_app.py @@ -1,10 +1,10 @@ from app import app import pytest + def test_hello(): with app.test_client() as client: response = client.get('/') assert response.data == b'Hello, DevOps!' assert response.status_code == 200 - \ No newline at end of file