Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions org.mixedrealitytoolkit.input/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
/// <summary>
/// Tests for the EyeCalibrationChecker.
/// Tests for the EyeCalibrationChecker.
/// </summary>
public class EyeCalibrationCheckerTests : BaseRuntimeInputTests
{
Expand Down Expand Up @@ -72,4 +66,4 @@ private void NoEyeCalibration()
}
}
}
#pragma warning restore CS1591
#pragma warning restore CS1591