Skip to content

Commit eceab09

Browse files
committed
chore: update .gitignore
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 99c4f9d commit eceab09

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ Cargo.lock
2020
**/*.rs.bk
2121

2222
.idea
23+
24+
css-inline/tests/inlined.*.html
25+

css-inline/tests/test_cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ pub mod tests {
1414
fn success() {
1515
css_inline()
1616
.arg("tests/example.html")
17-
.arg("--output-filename-prefix=keep-style-tags.")
17+
.arg("--output-filename-prefix=inlined.keep-style-tags.")
1818
.assert()
1919
.success()
2020
.stdout("tests/example.html: SUCCESS\n");
21-
let content = fs::read_to_string("tests/keep-style-tags.example.html").unwrap();
21+
let content = fs::read_to_string("tests/inlined.keep-style-tags.example.html").unwrap();
2222
assert_eq!(
2323
content,
2424
"<html><head>\n \

0 commit comments

Comments
 (0)