fix(gpodder_sqlite): correct imports in tests

This commit is contained in:
Jef Roosens 2025-06-17 14:01:11 +02:00
parent 7887477ed1
commit b16c9a0404
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
mod common;
use chrono::{SubsecRound, TimeDelta};
use gpodder::{AuthStore, Session};
use gpodder::{GpodderAuthStore, Session};
use gpodder_sqlite::SqliteRepository;
#[test]

View file

@ -1,4 +1,4 @@
use gpodder::{AuthStore, User};
use gpodder::{GpodderAuthStore, User};
use gpodder_sqlite::SqliteRepository;
use rand::{Rng, distributions::Alphanumeric};

View file

@ -1,6 +1,6 @@
mod common;
use gpodder::{DevicePatch, DeviceRepository, DeviceType};
use gpodder::{DevicePatch, DeviceType, GpodderDeviceStore};
#[test]
fn test_insert_devices() {