removed test template

This commit is contained in:
sam lovelace 2021-11-27 22:18:18 +00:00
parent a6a83e546e
commit 6509fbd1d8
2 changed files with 2 additions and 6 deletions

View file

@ -91,7 +91,7 @@ pub const Window = struct {
_ = self; _ = self;
c.glfwSwapInterval(@enumToInt(mode)); c.glfwSwapInterval(@enumToInt(mode));
} }
pub const VsyncMode = enum(c_int) { pub const VsyncMode = enum(c_int) {
disabled = 0, disabled = 0,
enabled = 1, enabled = 1,

View file

@ -14,8 +14,4 @@ pub fn main() anyerror!void {
window.update(); window.update();
window.swapBuffers(); window.swapBuffers();
} }
} }
test "basic test" {
try std.testing.expectEqual(10, 3 + 7);
}