From 43c47ef6763e08d89b30665c59aa16cb36624b1c Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 4 Mar 2022 16:59:50 +0100 Subject: [PATCH] state-res: Fix wrong import location --- crates/ruma-state-res/src/test_utils.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/ruma-state-res/src/test_utils.rs b/crates/ruma-state-res/src/test_utils.rs index 316e5090..fa4258cc 100644 --- a/crates/ruma-state-res/src/test_utils.rs +++ b/crates/ruma-state-res/src/test_utils.rs @@ -545,8 +545,9 @@ pub fn INITIAL_EDGES() -> Vec> { } pub mod event { - use ruma_common::events::{ - exports::ruma_common::MilliSecondsSinceUnixEpoch, pdu::Pdu, EventType, + use ruma_common::{ + events::{pdu::Pdu, EventType}, + MilliSecondsSinceUnixEpoch, }; use ruma_identifiers::{EventId, RoomId, UserId}; use serde::{Deserialize, Serialize};