about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--compiler/rustc_lint/src/tests.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/compiler/rustc_lint/src/tests.rs b/compiler/rustc_lint/src/tests.rs
index a50c88aa0f7..fc9d6f636b2 100644
--- a/compiler/rustc_lint/src/tests.rs
+++ b/compiler/rustc_lint/src/tests.rs
@@ -1,21 +1,23 @@
 use crate::context::parse_lint_and_tool_name;
-use rustc_span::{with_default_session_globals, Symbol};
+use rustc_span::{create_default_session_globals_then, Symbol};
 
 #[test]
 fn parse_lint_no_tool() {
-    with_default_session_globals(|| assert_eq!(parse_lint_and_tool_name("foo"), (None, "foo")));
+    create_default_session_globals_then(|| {
+        assert_eq!(parse_lint_and_tool_name("foo"), (None, "foo"))
+    });
 }
 
 #[test]
 fn parse_lint_with_tool() {
-    with_default_session_globals(|| {
+    create_default_session_globals_then(|| {
         assert_eq!(parse_lint_and_tool_name("clippy::foo"), (Some(Symbol::intern("clippy")), "foo"))
     });
 }
 
 #[test]
 fn parse_lint_multiple_path() {
-    with_default_session_globals(|| {
+    create_default_session_globals_then(|| {
         assert_eq!(
             parse_lint_and_tool_name("clippy::foo::bar"),
             (Some(Symbol::intern("clippy")), "foo::bar")