diff --git a/org.mixedrealitytoolkit.input/CHANGELOG.md b/org.mixedrealitytoolkit.input/CHANGELOG.md index 255c57678..e5bd48943 100644 --- a/org.mixedrealitytoolkit.input/CHANGELOG.md +++ b/org.mixedrealitytoolkit.input/CHANGELOG.md @@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). * Updated the minimum editor version to 6000.0.66f2 [PR #1112](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1112) * Reserialized MRTK XR Rig prefab to remove stale serialized fields. [PR #1110](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1110) * Updated tests to follow existing MRTK test patterns. [PR #1073](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1073) +* Updated the namespace for `EyeCalibrationCheckerTests` to match this package's namespaces. [PR #1129](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1129) ### Deprecated diff --git a/org.mixedrealitytoolkit.input/Tests/Runtime/EyeCalibrationCheckerTests.cs b/org.mixedrealitytoolkit.input/Tests/Runtime/EyeCalibrationCheckerTests.cs index 0d358eac0..4e27ca10e 100644 --- a/org.mixedrealitytoolkit.input/Tests/Runtime/EyeCalibrationCheckerTests.cs +++ b/org.mixedrealitytoolkit.input/Tests/Runtime/EyeCalibrationCheckerTests.cs @@ -4,21 +4,15 @@ // Disable "missing XML comment" warning for tests. While nice to have, this documentation is not required. #pragma warning disable CS1591 -using MixedReality.Toolkit.Core.Tests; -using MixedReality.Toolkit.Input.Tests; -using MixedReality.Toolkit.Input; using NUnit.Framework; using System.Collections; -using System.Threading.Tasks; -using UnityEditor; using UnityEngine; using UnityEngine.TestTools; -using UnityEngine.UI; -namespace MixedReality.Toolkit.UX.Runtime.Tests +namespace MixedReality.Toolkit.Input.Tests { /// - /// Tests for the EyeCalibrationChecker. + /// Tests for the EyeCalibrationChecker. /// public class EyeCalibrationCheckerTests : BaseRuntimeInputTests { @@ -72,4 +66,4 @@ private void NoEyeCalibration() } } } -#pragma warning restore CS1591 \ No newline at end of file +#pragma warning restore CS1591