Skip to content

Commit 06c784c

Browse files
committed
Update tests and examples to reference MIT instead of Apache
1 parent 7459129 commit 06c784c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

StyleCop.Analyzers/StyleCop.Analyzers.Test/OrderingRules/SA1200OutsideNamespaceUnitTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,15 @@ namespace TestNamespace
235235
public async Task TestFileHeaderIsProperlyPreservedWhenMovingUsingStatementsAsync()
236236
{
237237
var testCode = @"// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
238-
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
238+
// Licensed under the MIT License. See LICENSE in the project root for license information.
239239
240240
namespace TestNamespace
241241
{
242242
using System;
243243
}
244244
";
245245
var fixedTestCode = @"// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
246-
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
246+
// Licensed under the MIT License. See LICENSE in the project root for license information.
247247
248248
using System;
249249
@@ -264,7 +264,7 @@ namespace TestNamespace
264264
public async Task TestFileHeaderIsProperlyPreservedWhenMovingUsingStatementsWithCommentsAsync()
265265
{
266266
var testCode = @"// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
267-
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
267+
// Licensed under the MIT License. See LICENSE in the project root for license information.
268268
269269
namespace TestNamespace
270270
{
@@ -276,7 +276,7 @@ namespace TestNamespace
276276
}
277277
";
278278
var fixedTestCode = @"// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
279-
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
279+
// Licensed under the MIT License. See LICENSE in the project root for license information.
280280
281281
// Separated Comment
282282

documentation/SA1633.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ or
3939

4040
```csharp
4141
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
42-
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
42+
// Licensed under the MIT License. See LICENSE in the project root for license information.
4343
```
4444

4545
The type of header to use depends on the setting of the `xmlHeader` property. See the [configuration](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/Configuration.md) section for details on how to set this up.

0 commit comments

Comments
 (0)