Skip to content

Commit

Permalink
chore: rename files name that might cause ci fail (AppFlowy-IO#3777)
Browse files Browse the repository at this point in the history
  • Loading branch information
appflowy authored Oct 25, 2023
1 parent 95aeac2 commit d34eec1
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions frontend/rust-lib/event-integration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ use flowy_core::{AppFlowyCore, AppFlowyCoreConfig};
use flowy_notification::register_notification_sender;
use flowy_user::entities::AuthTypePB;

use crate::test_user::TestNotificationSender;
use crate::user_event::TestNotificationSender;

pub mod database_event;
pub mod document;
pub mod document_event;
pub mod event_builder;
pub mod test_database;
pub mod test_document;
pub mod test_folder;
pub mod test_user;
pub mod folder_event;
pub mod user_event;

#[derive(Clone)]
pub struct EventIntegrationTest {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::time::Duration;

use event_integration::test_document::assert_document_data_equal;
use event_integration::document_event::assert_document_data_equal;
use flowy_document2::entities::DocumentSyncStatePB;

use crate::document::af_cloud_test::util::AFCloudDocumentTest;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::time::Duration;

use event_integration::test_document::assert_document_data_equal;
use event_integration::document_event::assert_document_data_equal;
use flowy_document2::entities::DocumentSyncStatePB;

use crate::document::supabase_test::helper::FlowySupabaseDocumentTest;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use event_integration::test_user::{login_password, unique_email};
use event_integration::user_event::{login_password, unique_email};
use event_integration::{event_builder::EventBuilder, EventIntegrationTest};
use flowy_user::entities::{AuthTypePB, SignInPayloadPB, SignUpPayloadPB};
use flowy_user::errors::ErrorCode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use collab_database::fields::Field;
use collab_database::rows::{CreateRowParams, RowDetail, RowId};
use strum::EnumCount;

use event_integration::test_folder::ViewTest;
use event_integration::folder_event::ViewTest;
use event_integration::EventIntegrationTest;
use flowy_database2::entities::{FieldType, FilterPB, RowMetaPB};
use flowy_database2::services::cell::{CellBuilder, ToCellChangeset};
Expand Down

0 comments on commit d34eec1

Please sign in to comment.