Skip to content

Commit 21841fa

Browse files
committed
fix mock repodata
1 parent 3311ccd commit 21841fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/pixi/tests/integration_rust/upgrade_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ async fn pypi_dependency_upgrade_uses_custom_index() {
214214
let platform = Platform::current();
215215

216216
// Create local conda channel with Python
217-
let mut package_db = MockDatabase::default();
217+
let mut package_db = MockRepoData::default();
218218
package_db.add_package(
219219
Package::build("python", "3.12.0")
220220
.with_subdir(platform)

crates/pixi_test_utils/src/mock_repo_data.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! This modules defines [`PackageDatabase`], a struct that holds a bunch of easily constructable
1+
//! This modules defines [`MockRepoData`], a struct that holds a bunch of easily constructable
22
//! package definitions. Using this struct it becomes easier to generate controllable fake repodata.
33
44
use chrono::{DateTime, Utc};

0 commit comments

Comments
 (0)