Skip to content

Commit

Permalink
fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
38 committed Jun 30, 2021
1 parent 865acec commit 72479a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test.rs
@@ -1,11 +1,12 @@
use crate::prelude::*;

#[cfg(feature = "svg_backend")]
#[test]
fn regression_test_issue_267() {
let p1 = (338, 122);
let p2 = (365, 122);

let mut backend = BitMapBackend::new("blub.png", (800, 600));
let mut backend = SVGBackend::new("blub.png", (800, 600));

backend
.draw_line(p1, p2, &RGBColor(0, 0, 0).stroke_width(0))
Expand Down

0 comments on commit 72479a0

Please sign in to comment.