Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: compilation errors with functional_tests flag #195

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/functional/singletenant/push.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async fn test_push(ctx: &mut EchoServerContext) {
let topic = Uuid::new_v4().to_string();
let blob = Uuid::new_v4().to_string();
let push_message_payload = MessagePayload {
topic: Some(topic.into()),
topic: topic.into(),
blob: blob.to_string(),
flags: 0,
};
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/stores/notification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async fn notification_creation(ctx: &mut StoreContext) {
let res = ctx
.notifications
.create_or_update_notification(&gen_id(), TENANT_ID, &client_id, &MessagePayload {
topic: None,
topic: String::new(),
flags: 0,
blob: "example-payload".to_string(),
})
Expand Down
Loading