Skip to content

Commit

Permalink
Prevent cancellation
Browse files Browse the repository at this point in the history
  • Loading branch information
AuracleTech committed Mar 11, 2024
1 parent 0af56d3 commit 95fbc8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/multiline.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use jayce::{Duo, Token, Tokenizer};

const SOURCE: &str = r#"let dead_cat = "I mix my cat in a blender"
const SOURCE: &str = r#"let kind_cat = "I calmly pet my cute cats"
pancake_icecream
very_multiline
Expand Down Expand Up @@ -34,7 +34,7 @@ const EXPECTED: [Token<&'static str>; 14] = [
},
Token {
kind: &"identifier",
value: "dead_cat",
value: "kind_cat",
pos: (1, 5),
},
Token {
Expand All @@ -54,7 +54,7 @@ const EXPECTED: [Token<&'static str>; 14] = [
},
Token {
kind: &"string",
value: "\"I mix my cat in a blender\"",
value: "\"I calmly pet my cute cats\"",
pos: (1, 16),
},
Token {
Expand Down

0 comments on commit 95fbc8a

Please sign in to comment.