Browse Source

fix build for resource tests

pull/916/head
Andrey Kunchev 9 years ago
parent
commit
245992abc6
  1. 8
      tests/Avalonia.Styling.UnitTests/ResourceTests.cs

8
tests/Avalonia.Styling.UnitTests/ResourceTests.cs

@ -20,7 +20,7 @@ namespace Avalonia.Styling.UnitTests
{
new Style
{
Resources = new Dictionary<string, object>
Resources = new StyleResources
{
{ "Foo", "foo resource" },
{ "Bar", "overridden" },
@ -33,14 +33,14 @@ namespace Avalonia.Styling.UnitTests
{
new Style
{
Resources = new Dictionary<string, object>
Resources = new StyleResources
{
{ "Bar", "again overridden" },
}
},
new Style
{
Resources = new Dictionary<string, object>
Resources = new StyleResources
{
{ "Bar", "bar resource" },
}
@ -64,7 +64,7 @@ namespace Avalonia.Styling.UnitTests
{
new Style
{
Resources = new Dictionary<string, object>
Resources = new StyleResources
{
{ "Foo", "foo" },
}

Loading…
Cancel
Save