From c95bf0a116dd88691e4c079678a4575c18aa921c Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Wed, 22 Mar 2023 16:48:53 +0100 Subject: [PATCH] touch: add underscores to long number in test --- tests/by-util/test_touch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/by-util/test_touch.rs b/tests/by-util/test_touch.rs index ad685b64d..a0d3fd3dc 100644 --- a/tests/by-util/test_touch.rs +++ b/tests/by-util/test_touch.rs @@ -464,7 +464,7 @@ fn test_touch_set_date5() { // Slightly different result on Windows for nano seconds // TODO: investigate #[cfg(windows)] - let expected = FileTime::from_unix_time(67413, 23456700); + let expected = FileTime::from_unix_time(67413, 23_456_700); #[cfg(not(windows))] let expected = FileTime::from_unix_time(67413, 23_456_789);