1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 20:47:46 +00:00

touch: add underscores to long number in test

This commit is contained in:
Daniel Hofstetter 2023-03-22 16:48:53 +01:00
parent d5588a28a5
commit c95bf0a116

View file

@ -464,7 +464,7 @@ fn test_touch_set_date5() {
// Slightly different result on Windows for nano seconds // Slightly different result on Windows for nano seconds
// TODO: investigate // TODO: investigate
#[cfg(windows)] #[cfg(windows)]
let expected = FileTime::from_unix_time(67413, 23456700); let expected = FileTime::from_unix_time(67413, 23_456_700);
#[cfg(not(windows))] #[cfg(not(windows))]
let expected = FileTime::from_unix_time(67413, 23_456_789); let expected = FileTime::from_unix_time(67413, 23_456_789);