diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-04-23 16:18:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 15:18:27 +0000 |
commit | b0d3b20f2319ad346fe70b1114f492f852689435 (patch) | |
tree | 913b962a727f8b9439a506a86150e5ee27417207 /tests/integration/lsp_tests.rs | |
parent | 5236fd0dad3dd75ec1d650e74d36d4c6f1346e57 (diff) |
feat: enable Float16Array support (#23490)
Closes https://github.com/denoland/deno/issues/23450
Diffstat (limited to 'tests/integration/lsp_tests.rs')
-rw-r--r-- | tests/integration/lsp_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index da8d94925..248b02faa 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -5144,7 +5144,7 @@ fn lsp_jsr_auto_import_completion() { json!({ "triggerKind": 1 }), ); assert!(!list.is_incomplete); - assert_eq!(list.items.len(), 263); + assert_eq!(list.items.len(), 264); let item = list.items.iter().find(|i| i.label == "add").unwrap(); assert_eq!(&item.label, "add"); assert_eq!( @@ -5224,7 +5224,7 @@ fn lsp_jsr_auto_import_completion_import_map() { json!({ "triggerKind": 1 }), ); assert!(!list.is_incomplete); - assert_eq!(list.items.len(), 263); + assert_eq!(list.items.len(), 264); let item = list.items.iter().find(|i| i.label == "add").unwrap(); assert_eq!(&item.label, "add"); assert_eq!(json!(&item.label_details), json!({ "description": "add" })); |