We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1574cd3 commit 961635aCopy full SHA for 961635a
1 file changed
pokemon_v2/tests.py
@@ -5861,7 +5861,7 @@ def test_case_insensitive_api(self):
5861
def test_meta_api(self):
5862
response = self.client.get("{}/meta/".format(API_V2))
5863
self.assertEqual(response.status_code, status.HTTP_200_OK)
5864
- self.assertTrue(datetime.fromisoformat(response.data['deploy_date']))
5865
- self.assertEqual(25, len(response.data['deploy_date']))
5866
- self.assertEqual(40, len(response.data['hash']))
+ self.assertTrue(datetime.fromisoformat(response.data["deploy_date"]))
+ self.assertEqual(25, len(response.data["deploy_date"]))
+ self.assertEqual(40, len(response.data["hash"]))
5867
self.assertIn("tag", response.data)
0 commit comments