We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3b7a4c commit 5c6529cCopy full SHA for 5c6529c
2 files changed
graphannis/src/annis/db/sort_matches.rs
@@ -255,7 +255,7 @@ mod tests {
255
use std::time::Duration;
256
257
unsafe {
258
- let locale = CString::new("en_US.utf8").unwrap_or_default();
+ let locale = CString::new("POSIX").unwrap_or_default();
259
libc::setlocale(libc::LC_COLLATE, locale.as_ptr());
260
std::thread::sleep(Duration::from_millis(500));
261
}
verify.sh
@@ -7,7 +7,7 @@ set -e
7
cargo fmt --check
8
cargo clippy
9
10
-export LANG="en_US.utf8"
+export LANG="POSIX"
11
12
# Execute tests and calculate the code coverage both as lcov and HTML report
13
cargo llvm-cov clean --workspace
0 commit comments