Skip to content

Commit d943082

Browse files
authored
Update copyright year and copyright string (#1432)
<!--- Provide a general summary of your changes in the Title above --> ## Description Updates copyright year in tests and changed copyright string to match other Microsoft products (example: https://github.com/microsoft/PowerToys/pull/30689/files) ## Motivation and Context New year and similarity with other Microsoft Products ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Screenshots (if appropriate): ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change)
1 parent 2cf3ffe commit d943082

18 files changed

+20
-20
lines changed

UITests/AxeHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2023 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//
@@ -41,8 +41,8 @@ public static void AssertNoAccessibilityErrors()
4141
var testResult = AccessibilityScanner.Scan(null).WindowScanOutputs.SelectMany(output => output.Errors)
4242
.Where(rule => rule.Rule.ID != RuleId.NameIsInformative)
4343
.Where(rule => rule.Rule.ID != RuleId.NameExcludesControlType)
44-
.Where(rule => rule.Rule.ID != RuleId.NameExcludesLocalizedControlType)
45-
.Where(rule => rule.Rule.ID != RuleId.SiblingUniqueAndFocusable);
44+
.Where(rule => rule.Rule.ID != RuleId.NameExcludesLocalizedControlType)
45+
.Where(rule => rule.Rule.ID != RuleId.SiblingUniqueAndFocusable);
4646
if (testResult.Any())
4747
{
4848
var mappedResult = testResult.Select(result =>

UITests/SampleTestTemplate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2023 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/SessionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2023 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/TestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2023 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/Tests/Button.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/Tests/CheckBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/Tests/ComboBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/Tests/DatePicker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/Tests/MediaPlayerElement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2023 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

UITests/Tests/PersonPicture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//******************************************************************************
22
//
3-
// Copyright (c) 2023 Microsoft Corporation. All rights reserved.
3+
// Copyright (c) 2024 Microsoft Corporation. All rights reserved.
44
//
55
// This code is licensed under the MIT License (MIT).
66
//

0 commit comments

Comments
 (0)