chore(core): drop unused RegionId imports in pass tests (clippy --all-targets clean)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
00502153f3
commit
e3501a02f3
4 changed files with 4 additions and 4 deletions
|
|
@ -248,7 +248,7 @@ mod tests {
|
|||
use super::*;
|
||||
use crate::blackboard::Blackboard;
|
||||
use crate::grid::Grid;
|
||||
use crate::region::{ConnGraph, RegionId};
|
||||
use crate::region::ConnGraph;
|
||||
use std::collections::BTreeSet;
|
||||
|
||||
fn ctx_with_room(w: u32, h: u32, room: Rect) -> GenContext {
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ mod tests {
|
|||
use crate::blackboard::Blackboard;
|
||||
use crate::geometry::Rect;
|
||||
use crate::grid::Grid;
|
||||
use crate::region::{ConnGraph, RegionId};
|
||||
use crate::region::ConnGraph;
|
||||
|
||||
/// Builds a context with `rooms` rectangular Floor rooms (each `(x,y,w,h)`).
|
||||
fn ctx_with_rooms(w: u32, h: u32, rooms: &[(i32, i32, i32, i32)]) -> GenContext {
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ mod tests {
|
|||
use crate::blackboard::Blackboard;
|
||||
use crate::geometry::{Point, Rect};
|
||||
use crate::grid::Grid;
|
||||
use crate::region::{ConnGraph, RegionId};
|
||||
use crate::region::ConnGraph;
|
||||
use std::collections::BTreeSet;
|
||||
|
||||
/// Builds a context with a single rectangular room carved into Floor — the
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ mod tests {
|
|||
use crate::blackboard::Blackboard;
|
||||
use crate::geometry::Rect;
|
||||
use crate::grid::Grid;
|
||||
use crate::region::{ConnGraph, RegionId};
|
||||
use crate::region::ConnGraph;
|
||||
|
||||
fn ctx_with_room(w: u32, h: u32, room: Rect) -> GenContext {
|
||||
let mut ctx = GenContext {
|
||||
|
|
|
|||
Loading…
Reference in a new issue