We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be9c61c commit 086ac56Copy full SHA for 086ac56
tests/spec/features/assistance_spec.rb
@@ -36,15 +36,15 @@
36
37
scenario "using a type that hasn't been imported offers importing it" do
38
editor.set <<~EOF
39
- fn example(_: HashMap) {}
+ fn example(_: NonZeroU128) {}
40
EOF
41
click_on("Build")
42
43
within(:output, :stderr) do
44
- click_on("use std::collections::HashMap;")
+ click_on("use core::num::NonZeroU128;")
45
end
46
47
- expect(editor).to have_line 'use std::collections::HashMap;'
+ expect(editor).to have_line 'use core::num::NonZeroU128;'
48
49
50
scenario "triggering a panic offers enabling backtraces" do
0 commit comments