From 95afa163a60167cd97bf6afa870bc117a1be3d03 Mon Sep 17 00:00:00 2001 From: Shawn Wallace Date: Thu, 8 Aug 2024 01:34:48 -0400 Subject: [PATCH] Removed lingering "exwayland" references --- src/server/tests.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/server/tests.rs b/src/server/tests.rs index e9d572d..a7f2192 100644 --- a/src/server/tests.rs +++ b/src/server/tests.rs @@ -260,21 +260,21 @@ impl TestFixture { let mut satellite = FakeServerState::new(display.handle(), Some(client_s)); let testwl = thread.join().unwrap(); - let (fake_client, ex_server) = UnixStream::pair().unwrap(); - satellite.connect(ex_server); + let (fake_client, xwls_server) = UnixStream::pair().unwrap(); + satellite.connect(xwls_server); satellite.set_x_connection(FakeXConnection::default()); - let exwl_connection = Connection::from_socket(fake_client).unwrap(); + let xwls_connection = Connection::from_socket(fake_client).unwrap(); let registry = TestObject::::from_request( - &exwl_connection.display(), + &xwls_connection.display(), Req::::GetRegistry {}, ); let mut f = TestFixture { testwl, satellite, - xwls_connection: exwl_connection.into(), + xwls_connection: xwls_connection.into(), xwls_display: display, surface_serial: 1, registry,