Skip to content

Commit

Permalink
test: ignored a test, fixed another
Browse files Browse the repository at this point in the history
leftover assert!(false) for debugging, test_cant_delete_other_buffers
will not work since server doesn't track buffer ownership yet
  • Loading branch information
alemidev committed Oct 30, 2024
1 parent 4772af4 commit 90568bb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/tests/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(())
}
Expand Down
1 change: 1 addition & 0 deletions src/tests/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))| {
Expand Down

0 comments on commit 90568bb

Please sign in to comment.