Skip to content

Commit f5f87d0

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent f2cb89b commit f5f87d0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

contentcuration/contentcuration/tests/test_exportchannel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,9 +553,7 @@ def test_localfile_file_size_bigint_matches_small_files(self):
553553
def test_localfile_large_file_size_bigint(self):
554554
# A >2.1 GB file keeps its real size in file_size_bigint and NULLs the
555555
# legacy 32-bit file_size.
556-
local_file = kolibri_models.LocalFile.objects.get(
557-
pk=self.large_file_checksum
558-
)
556+
local_file = kolibri_models.LocalFile.objects.get(pk=self.large_file_checksum)
559557
self.assertEqual(local_file.file_size_bigint, LARGE_FILE_SIZE)
560558
self.assertIsNone(local_file.file_size)
561559

0 commit comments

Comments
 (0)