We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85742ed commit 8ad1ec8Copy full SHA for 8ad1ec8
backend/app/tests/crud/documents/test_update.py
@@ -17,11 +17,11 @@
17
class State:
18
crud: DocumentCrud
19
owner_id: UUID
20
- doc_id: ClassVar[int] = 0
+ _doc_id: ClassVar[int] = 0
21
22
def add(self):
23
- document = mk_document(self.owner_id, self.doc_id)
24
- self.doc_id += 1
+ document = mk_document(self.owner_id, self._doc_id)
+ self._doc_id += 1
25
return self.crud.update(document)
26
27
def get(self):
0 commit comments