Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
antiagainst committed Nov 29, 2023
1 parent 3553d55 commit 429610a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shaderc-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ void main() { my_ssbo.x = 1.0; }";
let result = c
.preprocess(VOID_E, "shader.glsl", "main", Some(&options))
.unwrap();
assert_eq!("#version 310 es\n void main(){ }\n", result.as_text());
assert_eq!("#version 310 es\n void main() { }\n", result.as_text());
}

#[test]
Expand Down

0 comments on commit 429610a

Please sign in to comment.