diff --git a/src/EditorFeatures/CSharpTest/ConvertTupleToStruct/ConvertTupleToStructTests.cs b/src/EditorFeatures/CSharpTest/ConvertTupleToStruct/ConvertTupleToStructTests.cs index 391916f48517c677e192a04b965dc11b17b57fe4..49a17aa2a89aa907917ae28bb9334fbf2e085e8c 100644 --- a/src/EditorFeatures/CSharpTest/ConvertTupleToStruct/ConvertTupleToStructTests.cs +++ b/src/EditorFeatures/CSharpTest/ConvertTupleToStruct/ConvertTupleToStructTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading.Tasks; @@ -470,7 +470,7 @@ class Test { void Method() { - var t1 = [||](a: Foo(), b: Bar()); + var t1 = [||](a: Goo(), b: Bar()); } } "; @@ -479,7 +479,7 @@ class Test { void Method() { - var t1 = new {|Rename:NewStruct|}(Foo(), Bar()); + var t1 = new {|Rename:NewStruct|}(Goo(), Bar()); } }