Browse Source

test.py update

Auriane Lartigue 2 years ago
parent
commit
b6bd2a595d
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      main/Dockerfiles/app/App/app/test.py

+ 2
- 3
main/Dockerfiles/app/App/app/test.py View File

@@ -14,7 +14,7 @@ class UnitTest(unittest.TestCase):
14 14
 		rv = self.app.get('/play/TEST')
15 15
 		self.assertEqual(rv.status, '200 OK')
16 16
 
17
-  	def test_end(self):
17
+	def test_end(self):
18 18
 		rv = self.app.get('/end/TEST')
19 19
 		self.assertEqual(rv.status, '200 OK')
20 20
 
@@ -23,5 +23,4 @@ class UnitTest(unittest.TestCase):
23 23
 		self.assertEqual(rv.status,'200 OK')
24 24
 
25 25
 if __name__ == '__main__':
26
-		unittest.main()
27
-		
26
+	unittest.main()

Loading…
Cancel
Save