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 72487b9 commit b6a9e8bCopy full SHA for b6a9e8b
tests.py
@@ -29,7 +29,7 @@ def test_created_request_has_status_pending(self):
29
# assert
30
self.assertEqual(request2.status, ValidationRequest.Status.PENDING)
31
32
- def test_created_request_has_channel_webui(self):
+ def test_created_request_has_channel_api(self):
33
34
# arrange
35
ValidationModelsTestCase.set_user_context()
@@ -43,7 +43,7 @@ def test_created_request_has_channel_webui(self):
43
request2 = ValidationRequest.objects.get(id=request.id)
44
45
46
- self.assertEqual(request2.channel, ValidationRequest.Channel.WEBUI)
+ self.assertEqual(request2.channel, ValidationRequest.Channel.API)
47
48
def test_created_request_has_created_fields(self):
49
0 commit comments