Skip to content

Commit 9c1340a

Browse files
authored
Fix size check message (#349)
Update phrasing of free-space check
1 parent 29ab7b3 commit 9c1340a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1515
### Removed
1616

1717
### Fixed
18+
- Fix phrasing of free-space check
1819

1920
### Security
2021

exe/arduino_ci.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def perform_example_compilation_tests(cpp_library, config)
541541

542542
usage = @backend.last_bytes_usage
543543
min_free_space = @cli_options[:min_free_space]
544-
attempt("Checking that free space of #{usage[:free]} is less than desired minimum #{min_free_space}") do
544+
attempt("Checking that the free space of #{usage[:free]} is at least the desired minimum of #{min_free_space}") do
545545
min_free_space <= usage[:free]
546546
end
547547
end

0 commit comments

Comments
 (0)