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 8c35267 commit 19aad27Copy full SHA for 19aad27
tests/easy_app/factories.py
@@ -4,7 +4,6 @@
4
5
6
class UserFactory(DjangoModelFactory):
7
-
8
username = Faker("user_name")
9
email = Faker("email")
10
tests/test_api_base_response.py
@@ -6,7 +6,6 @@
def test_base_api_result_base():
assert BaseAPIResponse("").json_data["data"] == ""
11
12
assert BaseAPIResponse("1").json_data["data"] == "1"
@@ -20,7 +19,6 @@ def test_base_api_result_base():
20
19
21
22
def test_base_api_result_dict():
23
24
assert BaseAPIResponse({"a": 1, "b": 2}).json_data["data"] == {
25
"a": 1,
26
"b": 2,
0 commit comments