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 d63d72c commit 5b2bc07Copy full SHA for 5b2bc07
tests/encryption_/test_base.py
@@ -202,11 +202,9 @@ def test_numeric_fields(self):
202
)
203
204
obj = EncryptedNumbers.objects.get(pos_bigint=1000000)
205
- obj = EncryptedNumbers.objects.get(pos_int=1)
206
obj = EncryptedNumbers.objects.get(pos_smallint=12345)
207
obj = EncryptedNumbers.objects.get(smallint=-12345)
208
209
self.assertEqual(obj.pos_bigint, 1000000)
210
- self.assertEqual(obj.pos_int, 1)
211
self.assertEqual(obj.pos_smallint, 12345)
212
self.assertEqual(obj.smallint, -12345)
0 commit comments