Skip to content

Commit d32075c

Browse files
committed
Remove outdated test
1 parent 7a44bf9 commit d32075c

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

tests/driver_manager_tests.rs

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -134,27 +134,6 @@ fn test_driver_manager_loads_driver() {
134134
}
135135
}
136136

137-
/// Test that loading with an incorrect entry point fails gracefully.
138-
#[test]
139-
140-
fn test_driver_manager_wrong_entry_point_fails() {
141-
skip_if_no_library!();
142-
143-
let lib_path = get_library_path();
144-
145-
// Try to load with wrong entry point
146-
let driver_result = ManagedDriver::load_dynamic_from_filename(
147-
lib_path,
148-
Some(b"NonExistentDriverInit"),
149-
AdbcVersion::V110,
150-
);
151-
152-
assert!(
153-
driver_result.is_err(),
154-
"Loading with wrong entry point should fail"
155-
);
156-
}
157-
158137
// Section 10.4: Database Creation Tests
159138

160139
/// Test creating a database via the driver manager.

0 commit comments

Comments
 (0)