-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into konrad/group_operations
- Loading branch information
Showing
28 changed files
with
479 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
backend/.sqlx/query-29234191c66fe0f885e5d43e2970db4ec0f65ad92677e6f87366c9161a12958d.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...e5273495842d1c51fe7c335267953db8bdcd.json → ...bafb1929a95bdf63fd120ffbf0cc0af07990.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
backend/.sqlx/query-59ed45df5cc9e196eb26f03dac3201a8d3787159c5e0beb81b07991f69e605ea.json
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
backend/.sqlx/query-b53328370790a73e5329450bf079fd3bae5e8a9a59f5ad57036d2f4093a64ca1.json
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
backend/.sqlx/query-c889289c8c35c831ed6faab25cc3aaa58d931fcd4b7187edd1d0d2e6bd7c7375.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
backend/.sqlx/query-ca471c422d4e4c8f7f4db7f66274b03f4c30e0450b3943049f72c889849092a5.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
backend/.sqlx/query-e69944cfbad908cd11673ef89f015ec143acb28b99ee319486e5a348aebf8853.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,7 @@ use crate::{ | |
}, | ||
}; | ||
use phnxserver_test_harness::utils::setup::TestBackend; | ||
use phnxtypes::{ | ||
codec::PhnxCodec, | ||
identifiers::{AsClientId, SafeTryInto}, | ||
}; | ||
use phnxtypes::{codec::PhnxCodec, identifiers::AsClientId}; | ||
use rusqlite::Connection; | ||
|
||
#[actix_rt::test] | ||
|
@@ -23,7 +20,7 @@ async fn user_stages() { | |
let setup = TestBackend::single().await; | ||
|
||
let user_name = "[email protected]"; | ||
let as_client_id = AsClientId::random(SafeTryInto::try_into(user_name).unwrap()).unwrap(); | ||
let as_client_id = AsClientId::random(user_name.parse().unwrap()).unwrap(); | ||
|
||
let phnx_db_connection = Connection::open_in_memory().unwrap(); | ||
let mut client_db_connection = Connection::open_in_memory().unwrap(); | ||
|
Oops, something went wrong.