Correct test comments missed in f254c56585688a187a58dc284477cb1cd39
authorMatt Corallo <git@bluematt.me>
Thu, 21 Sep 2023 20:03:13 +0000 (20:03 +0000)
committerMatt Corallo <git@bluematt.me>
Tue, 26 Sep 2023 16:37:19 +0000 (16:37 +0000)
lightning-persister/src/fs_store.rs

index 42b28018fe9202ce4435a41dc87907433b156e7d..c8bd3f563fd22c8ae0d2e94660cce8339696be8b 100644 (file)
@@ -436,7 +436,7 @@ mod tests {
        }
 
        // Test that if the store's path to channel data is read-only, writing a
-       // monitor to it results in the store returning an InProgress.
+       // monitor to it results in the store returning an UnrecoverableError.
        // Windows ignores the read-only flag for folders, so this test is Unix-only.
        #[cfg(not(target_os = "windows"))]
        #[test]
@@ -458,7 +458,7 @@ mod tests {
                let update_id = update_map.get(&added_monitors[0].0.to_channel_id()).unwrap();
 
                // Set the store's directory to read-only, which should result in
-               // returning a permanent failure when we then attempt to persist a
+               // returning an unrecoverable failure when we then attempt to persist a
                // channel update.
                let path = &store.get_data_dir();
                let mut perms = fs::metadata(path).unwrap().permissions();