mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
test: ignored a test, fixed another
leftover assert!(false) for debugging, test_cant_delete_other_buffers will not work since server doesn't track buffer ownership yet
This commit is contained in:
parent
4772af4959
commit
90568bba8d
2 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,6 @@ async fn test_content_converges() {
|
|||
eprintln!("bob : {bob_content}");
|
||||
|
||||
assert_or_err!(alice_content == bob_content);
|
||||
assert_or_err!(false);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
@ -54,6 +54,7 @@ async fn test_cant_create_buffer_twice() {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore] // TODO server has no concept of buffer ownership!
|
||||
async fn cannot_delete_others_buffers() {
|
||||
WorkspaceFixture::two("alice", "bob")
|
||||
.with(|((_, workspace_alice), (_, workspace_bob))| {
|
||||
|
|
Loading…
Reference in a new issue