summaryrefslogtreecommitdiff
path: root/rust/tests/repository.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/tests/repository.rs')
-rw-r--r--rust/tests/repository.rs11
1 files changed, 3 insertions, 8 deletions
diff --git a/rust/tests/repository.rs b/rust/tests/repository.rs
index 6047bcae..b1efee11 100644
--- a/rust/tests/repository.rs
+++ b/rust/tests/repository.rs
@@ -1,14 +1,9 @@
use binaryninja::headless::Session;
use binaryninja::repository::RepositoryManager;
-use rstest::*;
-#[fixture]
-fn session() -> Session {
- Session::new().expect("Failed to initialize session")
-}
-
-#[rstest]
-fn test_list(_session: Session) {
+#[test]
+fn test_list() {
+ let _session = Session::new().expect("Failed to initialize session");
let manager = RepositoryManager::default();
let repositories = manager.repositories();
for repository in &repositories {