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:
Parley Hatch 2026-05-31 01:12:14 -06:00
parent 00502153f3
commit e3501a02f3
4 changed files with 4 additions and 4 deletions

View file

@ -248,7 +248,7 @@ mod tests {
use super::*; use super::*;
use crate::blackboard::Blackboard; use crate::blackboard::Blackboard;
use crate::grid::Grid; use crate::grid::Grid;
use crate::region::{ConnGraph, RegionId}; use crate::region::ConnGraph;
use std::collections::BTreeSet; use std::collections::BTreeSet;
fn ctx_with_room(w: u32, h: u32, room: Rect) -> GenContext { fn ctx_with_room(w: u32, h: u32, room: Rect) -> GenContext {

View file

@ -182,7 +182,7 @@ mod tests {
use crate::blackboard::Blackboard; use crate::blackboard::Blackboard;
use crate::geometry::Rect; use crate::geometry::Rect;
use crate::grid::Grid; 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)`). /// 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 { fn ctx_with_rooms(w: u32, h: u32, rooms: &[(i32, i32, i32, i32)]) -> GenContext {

View file

@ -128,7 +128,7 @@ mod tests {
use crate::blackboard::Blackboard; use crate::blackboard::Blackboard;
use crate::geometry::{Point, Rect}; use crate::geometry::{Point, Rect};
use crate::grid::Grid; use crate::grid::Grid;
use crate::region::{ConnGraph, RegionId}; use crate::region::ConnGraph;
use std::collections::BTreeSet; use std::collections::BTreeSet;
/// Builds a context with a single rectangular room carved into Floor — the /// Builds a context with a single rectangular room carved into Floor — the

View file

@ -209,7 +209,7 @@ mod tests {
use crate::blackboard::Blackboard; use crate::blackboard::Blackboard;
use crate::geometry::Rect; use crate::geometry::Rect;
use crate::grid::Grid; use crate::grid::Grid;
use crate::region::{ConnGraph, RegionId}; use crate::region::ConnGraph;
fn ctx_with_room(w: u32, h: u32, room: Rect) -> GenContext { fn ctx_with_room(w: u32, h: u32, room: Rect) -> GenContext {
let mut ctx = GenContext { let mut ctx = GenContext {