From 9514d1b3419625b142abe7fecc89f126e6527095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sat, 28 Nov 2020 12:13:34 +0000 Subject: [PATCH] cleanup --- tests/system_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system_tests.rs b/tests/system_tests.rs index a15309f..c378128 100644 --- a/tests/system_tests.rs +++ b/tests/system_tests.rs @@ -114,7 +114,7 @@ fn restore_latest_version_by_default() -> Result<()> { backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, "newest contents")?; let source_file_full_path = &source.file_path(source_file_relative_path); - assert_restored_file_contents(repository_path, source_file_full_path, "newest contents".as_bytes()) + assert_restored_file_contents(repository_path, source_file_full_path, b"newest contents") } #[test]