Skip to content

Commit

Permalink
fix wrong size in test
Browse files Browse the repository at this point in the history
  • Loading branch information
DerouineauNicolas committed Aug 30, 2024
1 parent 0dbe393 commit c70fe2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/StreamServerApp/tests/tests_admin_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_movies_series_added_to_db(self):

video = Video.objects.get(
name='The Big Bang Theory S5 E19')
self.assertEqual(video.video_folder_size_in_MB, 3)
self.assertEqual(video.video_folder_size_in_MB, 2)
series = Series.objects.first()
self.assertEqual(video.episode, 19)
self.assertEqual(video.season, 5)
Expand Down

0 comments on commit c70fe2d

Please sign in to comment.