Skip to content

Commit

Permalink
Fix incorrect download size units in download measurement
Browse files Browse the repository at this point in the history
  • Loading branch information
amorphic committed Sep 26, 2023
1 parent b8a97cb commit d0cb60a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
### Fixed

- Fix missing space in latency cli output
- Fix incorrect download size units in download measurement

## [1.2.5] (2022-03-12)

Expand Down
2 changes: 1 addition & 1 deletion netmeasure/measurements/file_download/measurements.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _get_wget_results(self, url, download_timeout):
download_rate_unit=download_rate_unit,
download_rate=download_rate,
download_size=download_size,
download_size_unit=StorageUnit.bit,
download_size_unit=StorageUnit.byte,
errors=[],
)

Expand Down

0 comments on commit d0cb60a

Please sign in to comment.