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:
əlemi 2024-10-30 13:50:08 +01:00
parent 4772af4959
commit 90568bba8d
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 1 additions and 1 deletions

View file

@ -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(())
}

View file

@ -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))| {