Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix size check message #349

Merged
merged 2 commits into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed

### Fixed
- Fix phrasing of free-space check

### Security

Expand Down
2 changes: 1 addition & 1 deletion exe/arduino_ci.rb
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def perform_example_compilation_tests(cpp_library, config)

usage = @backend.last_bytes_usage
min_free_space = @cli_options[:min_free_space]
attempt("Checking that free space of #{usage[:free]} is less than desired minimum #{min_free_space}") do
attempt("Checking that the free space of #{usage[:free]} is at least the desired minimum of #{min_free_space}") do
min_free_space <= usage[:free]
end
end
Expand Down