From 82697773f8e5507dc3982645f805a011996f7cb4 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 27 Aug 2025 11:14:52 +0300 Subject: config: Move workspace into its own module --- src/layout/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/layout') diff --git a/src/layout/tests.rs b/src/layout/tests.rs index ab2f1f66..04381079 100644 --- a/src/layout/tests.rs +++ b/src/layout/tests.rs @@ -1,8 +1,8 @@ use std::cell::{Cell, OnceCell, RefCell}; +use niri_config::workspace::WorkspaceName; use niri_config::{ - FloatOrInt, OutputName, TabIndicatorLength, TabIndicatorPosition, WorkspaceName, - WorkspaceReference, + FloatOrInt, OutputName, TabIndicatorLength, TabIndicatorPosition, WorkspaceReference, }; use proptest::prelude::*; use proptest_derive::Arbitrary; -- cgit