Skip to content

Commit

Permalink
fix: changed reflexo_test_capture
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Sep 28, 2024
1 parent 566a6f7 commit 5dc379d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ mod tests {

let mut start_capture = false;
for line in res.lines() {
if line.contains(">>> typst_ts_test_capture") {
if line.contains(">>> reflexo_test_capture") {
start_capture = true;
} else if line.contains("<<< typst_ts_test_capture") {
} else if line.contains("<<< reflexo_test_capture") {
start_capture = false;

let test_point = serde_json::from_str::<TestPoint>(contents.join("\n").trim())?;
Expand Down

0 comments on commit 5dc379d

Please sign in to comment.