diff --git a/src/Umbraco.Tests/TEMP/DatabaseContextTests.sdf b/src/Umbraco.Tests/TEMP/DatabaseContextTests.sdf
deleted file mode 100644
index d13671d77a..0000000000
Binary files a/src/Umbraco.Tests/TEMP/DatabaseContextTests.sdf and /dev/null differ
diff --git a/src/Umbraco.Web.BackOffice/Controllers/IconController.cs b/src/Umbraco.Web.BackOffice/Controllers/IconController.cs
index 2aa2761134..bbefa82bd9 100644
--- a/src/Umbraco.Web.BackOffice/Controllers/IconController.cs
+++ b/src/Umbraco.Web.BackOffice/Controllers/IconController.cs
@@ -8,6 +8,7 @@ using Umbraco.Core.Configuration;
using Umbraco.Core.Hosting;
using Umbraco.Web.BackOffice.Controllers;
using Umbraco.Web.Common.Attributes;
+using Umbraco.Web.Common.Filters;
namespace Umbraco.Web.Editors
{
@@ -30,6 +31,7 @@ namespace Umbraco.Web.Editors
///
///
///
+ [DetermineAmbiguousActionByPassingParameters]
public IconModel GetIcon(string iconName)
{
return string.IsNullOrWhiteSpace(iconName)
@@ -43,6 +45,7 @@ namespace Umbraco.Web.Editors
///
///
///
+ [DetermineAmbiguousActionByPassingParameters]
public IconModel GetIcon(FileInfo fileInfo)
{
return fileInfo == null || string.IsNullOrWhiteSpace(fileInfo.Name)