diff --git a/gpui/src/app.rs b/gpui/src/app.rs
index 4a99d712c7257739920e81a0be432f374a160a43..d539314bb726806f4e64684ebf09da3c9a558eb9 100644
--- a/gpui/src/app.rs
+++ b/gpui/src/app.rs
@@ -2764,61 +2764,6 @@ mod tests {
assert_eq!(handle_1.read(app).events, vec![7, 10, 5])
}
- // #[crate::test(self)]
- // async fn test_spawn_from_model(mut app: TestAppContext) {
- // #[derive(Default)]
- // struct Model {
- // count: usize,
- // }
-
- // impl Entity for Model {
- // type Event = ();
- // }
-
- // let handle = app.add_model(|_| Model::default());
- // handle
- // .update(&mut app, |_, c| {
- // c.spawn(async { 7 }, |model, output, _| {
- // model.count = output;
- // })
- // })
- // .await;
- // app.read(|ctx| assert_eq!(handle.read(ctx).count, 7));
-
- // handle
- // .update(&mut app, |_, c| {
- // c.spawn(async { 14 }, |model, output, _| {
- // model.count = output;
- // })
- // })
- // .await;
- // app.read(|ctx| assert_eq!(handle.read(ctx).count, 14));
- // }
-
- // #[crate::test(self)]
- // async fn test_spawn_stream_local_from_model(mut app: TestAppContext) {
- // #[derive(Default)]
- // struct Model {
- // events: Vec