We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2cb89b commit f5f87d0Copy full SHA for f5f87d0
1 file changed
contentcuration/contentcuration/tests/test_exportchannel.py
@@ -553,9 +553,7 @@ def test_localfile_file_size_bigint_matches_small_files(self):
553
def test_localfile_large_file_size_bigint(self):
554
# A >2.1 GB file keeps its real size in file_size_bigint and NULLs the
555
# legacy 32-bit file_size.
556
- local_file = kolibri_models.LocalFile.objects.get(
557
- pk=self.large_file_checksum
558
- )
+ local_file = kolibri_models.LocalFile.objects.get(pk=self.large_file_checksum)
559
self.assertEqual(local_file.file_size_bigint, LARGE_FILE_SIZE)
560
self.assertIsNone(local_file.file_size)
561
0 commit comments