Skip to content

Commit 2ea2ca5

Browse files
committed
clean tests
1 parent 5fccf46 commit 2ea2ca5

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

crates/quarto-markdown-pandoc/tests/test_inline_locations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fn test_inline_source_locations() {
7878
let hello_str = &inlines[0];
7979
assert_eq!(hello_str["t"], "Str");
8080
assert_eq!(hello_str["c"], "hello");
81-
let (start_off, start_row, start_col, end_off, end_row, end_col, _type) =
81+
let (start_off, _start_row, start_col, end_off, _end_row, end_col, _type) =
8282
resolve_source_ref(&hello_str["s"], pool);
8383
assert_eq!(start_col, 0);
8484
assert_eq!(start_off, 0);

crates/quarto-markdown-pandoc/tests/test_json_errors.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use quarto_markdown_pandoc::readers;
2-
use quarto_markdown_pandoc::utils;
32

43
#[test]
54
fn test_json_error_format() {

crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Copyright (c) 2025 Posit, PBC
44
*/
55

6-
use hashlink::LinkedHashMap;
76
use quarto_markdown_pandoc::pandoc::ast_context::ASTContext;
87
use quarto_markdown_pandoc::pandoc::{Block, Inline, Pandoc, Paragraph, Str};
98
use quarto_markdown_pandoc::readers;

crates/quarto-markdown-pandoc/tests/test_warnings.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use quarto_markdown_pandoc::readers;
2-
use quarto_markdown_pandoc::utils;
32

43
#[test]
54
fn test_caption_without_table_warning() {

0 commit comments

Comments
 (0)