Skip to content

Commit 9095e07

Browse files
authored
Fix eye tracking test namespace (#1129)
* Update EyeCalibrationCheckerTests.cs * Update CHANGELOG.md
1 parent 45093c4 commit 9095e07

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

org.mixedrealitytoolkit.input/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
2323
* Updated the minimum editor version to 6000.0.66f2 [PR #1112](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1112)
2424
* Reserialized MRTK XR Rig prefab to remove stale serialized fields. [PR #1110](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1110)
2525
* Updated tests to follow existing MRTK test patterns. [PR #1073](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1073)
26+
* Updated the namespace for `EyeCalibrationCheckerTests` to match this package's namespaces. [PR #1129](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1129)
2627

2728
### Deprecated
2829

org.mixedrealitytoolkit.input/Tests/Runtime/EyeCalibrationCheckerTests.cs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,15 @@
44
// Disable "missing XML comment" warning for tests. While nice to have, this documentation is not required.
55
#pragma warning disable CS1591
66

7-
using MixedReality.Toolkit.Core.Tests;
8-
using MixedReality.Toolkit.Input.Tests;
9-
using MixedReality.Toolkit.Input;
107
using NUnit.Framework;
118
using System.Collections;
12-
using System.Threading.Tasks;
13-
using UnityEditor;
149
using UnityEngine;
1510
using UnityEngine.TestTools;
16-
using UnityEngine.UI;
1711

18-
namespace MixedReality.Toolkit.UX.Runtime.Tests
12+
namespace MixedReality.Toolkit.Input.Tests
1913
{
2014
/// <summary>
21-
/// Tests for the EyeCalibrationChecker.
15+
/// Tests for the EyeCalibrationChecker.
2216
/// </summary>
2317
public class EyeCalibrationCheckerTests : BaseRuntimeInputTests
2418
{
@@ -72,4 +66,4 @@ private void NoEyeCalibration()
7266
}
7367
}
7468
}
75-
#pragma warning restore CS1591
69+
#pragma warning restore CS1591

0 commit comments

Comments
 (0)