...and fix the test case

pull/10/head
Bradlee Speice 2019-10-09 21:31:28 -04:00
parent 1702bea1a2
commit 92ba2cd6c8
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
Cargo.lock
.idea/
*.swp

View File

@ -13,7 +13,7 @@ mod tests {
let minor = unsafe { crate::aeron_version_minor() };
let patch = unsafe { crate::aeron_version_patch() };
assert_eq!(major, 1);
assert_eq!(minor, 21);
assert_eq!(patch, 2);
assert_eq!(minor, 22);
assert_eq!(patch, 0);
}
}