about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2021-07-08 17:14:28 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2021-07-08 17:14:28 +0200
commitd891c8cd544e7f01dba2163cd1016ddf90dfedaf (patch)
treeaf7ed053d65ebc39b8a21f7b2495c26ee4adab1f
parenta2654fb64c9c9d368063b488693d8da17bc9b4e9 (diff)
downloadrust-d891c8cd544e7f01dba2163cd1016ddf90dfedaf.tar.gz
rust-d891c8cd544e7f01dba2163cd1016ddf90dfedaf.zip
Update to last upstream version
-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")