mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-04 19:49:01 +08:00
Reindent utils_test with 4 spaces
This commit is contained in:
parent
098d2fda52
commit
431bc5a297
@ -1,6 +1,7 @@
|
|||||||
import unittest
|
import unittest
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
|
|
||||||
class UtilsTests(unittest.TestCase):
|
class UtilsTests(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.url_options = "http://localhost:7860/sdapi/v1/options"
|
self.url_options = "http://localhost:7860/sdapi/v1/options"
|
||||||
@ -23,7 +24,7 @@ class UtilsTests(unittest.TestCase):
|
|||||||
|
|
||||||
pre_value = response.json()["send_seed"]
|
pre_value = response.json()["send_seed"]
|
||||||
|
|
||||||
self.assertEqual(requests.post(self.url_options, json={"send_seed":not pre_value}).status_code, 200)
|
self.assertEqual(requests.post(self.url_options, json={"send_seed": not pre_value}).status_code, 200)
|
||||||
|
|
||||||
response = requests.get(self.url_options)
|
response = requests.get(self.url_options)
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
@ -58,5 +59,6 @@ class UtilsTests(unittest.TestCase):
|
|||||||
def test_embeddings(self):
|
def test_embeddings(self):
|
||||||
self.assertEqual(requests.get(self.url_embeddings).status_code, 200)
|
self.assertEqual(requests.get(self.url_embeddings).status_code, 200)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user