File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl SignedDecimal256 {
108
108
/// Create a -1.0 SignedDecimal256
109
109
#[ inline]
110
110
pub const fn negative_one ( ) -> Self {
111
- // -DECIMAL_FRATIONAL
111
+ // -DECIMAL_FRACTIONAL
112
112
Self ( Int256 :: from_i128 ( -1_000_000_000_000_000_000 ) )
113
113
}
114
114
Original file line number Diff line number Diff line change @@ -406,12 +406,27 @@ mod tests {
406
406
} ;
407
407
let target = Target :: new ( triple, wasmer:: CpuFeature :: POPCNT . into ( ) ) ;
408
408
let p = modules_path ( & base, 17 , & target) ;
409
+ <<<<<<< HEAD
409
410
assert_eq !(
410
411
p. as_os_str( ) ,
411
412
if cfg!( windows) {
412
413
"modules\\ v12-wasmer17\\ x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
413
414
} else {
414
415
"modules/v12-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
416
+ =======
417
+ let discriminator = raw_module_version_discriminator( ) ;
418
+
419
+ assert_eq!(
420
+ p. as_os_str( ) ,
421
+ if cfg!( windows) {
422
+ format!(
423
+ "modules\\ {discriminator}-wasmer17\\ x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
424
+ )
425
+ } else {
426
+ format!(
427
+ "modules/{discriminator}-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
428
+ )
429
+ >>>>>>> af9d6cb29 ( Fix typos)
415
430
}
416
431
) ;
417
432
}
You can’t perform that action at this time.
0 commit comments