Skip to content

Commit

Permalink
Set explicit width in chunkstore formatting test
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jan 15, 2025
1 parent 39fa397 commit b178851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/store/re_chunk_store/tests/formatting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn format_chunk_store() -> anyhow::Result<()> {
.build()?,
))?;

insta::assert_snapshot!("format_chunk_store", store.to_string());
insta::assert_snapshot!("format_chunk_store", format!("{:200}", store));

Ok(())
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
source: crates/store/re_chunk_store/tests/formatting.rs
assertion_line: 45
expression: store.to_string()
expression: "format!(\"{:200}\", store)"
snapshot_kind: text
---
ChunkStore {
Expand Down

0 comments on commit b178851

Please sign in to comment.