Fixed failing unit test.

This commit is contained in:
Andy Butland
2020-02-12 09:05:31 +01:00
parent 927b7c0f75
commit 1b7554c5ce
2 changed files with 2 additions and 2 deletions
@@ -8,7 +8,7 @@ namespace Umbraco.Core.PropertyEditors
/// </summary>
public class MissingPropertyEditor : IDataEditor
{
public string Alias => "missing";
public string Alias => "Umbraco.Missing";
public EditorType Type => EditorType.Nothing;
@@ -275,7 +275,7 @@ AnotherContentFinder
public void GetDataEditors()
{
var types = _typeLoader.GetDataEditors();
Assert.AreEqual(38, types.Count());
Assert.AreEqual(39, types.Count());
}
/// <summary>