From ba99123c2709b8aeb0c4b0c682f38fe4726fd82a Mon Sep 17 00:00:00 2001 From: K0ntr4 Date: Mon, 22 Apr 2024 12:00:11 +0200 Subject: [PATCH] improved coding style improved coding style --- src/tests/test_game_info.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/tests/test_game_info.py b/src/tests/test_game_info.py index 086fcf0..6a6f430 100644 --- a/src/tests/test_game_info.py +++ b/src/tests/test_game_info.py @@ -7,17 +7,17 @@ ) TEKKEN_GAME_INFO = { - 'id': 7498, - 'first_release_date': 1424217600, - 'genres': [4], - 'name': 'Tekken 7', - 'summary': ('Experience the epic conclusion of the Mishima clan and unravel ' - 'the reasons behind each step of their ceaseless fight. ' - 'Powered by Unreal Engine 4, Tekken 7 features stunning ' - 'story-driven cinematic battles and intense duels that ' - 'can be enjoyed with friends and rivals alike through ' - 'innovative fight mechanics.') - } + 'id': 7498, + 'first_release_date': 1424217600, + 'genres': [4], + 'name': 'Tekken 7', + 'summary': ('Experience the epic conclusion of the Mishima clan and unravel ' + 'the reasons behind each step of their ceaseless fight. ' + 'Powered by Unreal Engine 4, Tekken 7 features stunning ' + 'story-driven cinematic battles and intense duels that ' + 'can be enjoyed with friends and rivals alike through ' + 'innovative fight mechanics.') +} class TestGameInfo(unittest.TestCase):