fix(tests): repair 2 missing closing braces from v0.22 Track-A↔Track-C merge
Merge of feat/v0.22-keisei-schema-v4 into main (which already had Track C's fs_type tests) elided '); }' at 2 seams. Tests compiled once I added them back, but the edit missed the git-add step. No behaviour change — both tests already passed after the fix; commit just closes out the working tree.
This commit is contained in:
parent
4f6cbfd305
commit
5ec90ca241
1 changed files with 8 additions and 0 deletions
|
|
@ -1032,6 +1032,10 @@ fn brain_load_on_typical_filesystem_no_warn() {
|
|||
assert!(
|
||||
matches!(w, fs_type::FsWarning::None | fs_type::FsWarning::Unknown),
|
||||
"standard tmpdir should not be classed as exFAT/FAT32, got {w:?}"
|
||||
);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// v0.22 — schema v4 multi-brain + Scope::Auto + templated hint + registry.
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
|
|
@ -1333,6 +1337,10 @@ fn fs_type_detection_returns_none_on_standard_fs() {
|
|||
assert!(
|
||||
!matches!(w, fs_type::FsWarning::ExFat | fs_type::FsWarning::Fat32),
|
||||
"detect_fs_warning misclassified tmpdir as {w:?}"
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn time_now_utc_string_has_rfc3339_shape() {
|
||||
let s = crate::time::now_utc_string();
|
||||
// Form: YYYY-MM-DDThh:mm:ssZ, exactly 20 bytes.
|
||||
|
|
|
|||
Loading…
Reference in a new issue