diff --git a/symbolic-symcache/tests/test_writer.rs b/symbolic-symcache/tests/test_writer.rs index 95c08bc0..47fcc8ec 100644 --- a/symbolic-symcache/tests/test_writer.rs +++ b/symbolic-symcache/tests/test_writer.rs @@ -23,7 +23,7 @@ fn test_write_header_linux() -> Result<(), Error> { } let symcache = SymCache::parse(&buffer)?; - insta::assert_debug_snapshot!(symcache, @r#" + insta::assert_debug_snapshot!(symcache, @r###" SymCache { version: 8, debug_id: DebugId { @@ -33,11 +33,11 @@ fn test_write_header_linux() -> Result<(), Error> { arch: Amd64, files: 55, functions: 697, - source_locations: 8284, - ranges: 6828, + source_locations: 8431, + ranges: 6975, string_bytes: 49877, } - "#); + "###); Ok(()) } @@ -67,7 +67,7 @@ fn test_write_header_macos() -> Result<(), Error> { converter.process_object(&object)?; converter.serialize(&mut Cursor::new(&mut buffer))?; let symcache = SymCache::parse(&buffer)?; - insta::assert_debug_snapshot!(symcache, @r#" + insta::assert_debug_snapshot!(symcache, @r###" SymCache { version: 8, debug_id: DebugId { @@ -77,11 +77,11 @@ fn test_write_header_macos() -> Result<(), Error> { arch: Amd64, files: 36, functions: 639, - source_locations: 7199, - ranges: 5782, + source_locations: 7382, + ranges: 5965, string_bytes: 40958, } - "#); + "###); Ok(()) }