Skip to content

Commit

Permalink
Merge pull request #618 from claudiobernasconi/master
Browse files Browse the repository at this point in the history
Resolved localization failure reported in issue #597. Pulling into master and will check build result on MyGet for now.
  • Loading branch information
alexmg committed Jan 25, 2015
2 parents 3ad15fc + 2bffb29 commit c985cda
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac.Core;
using Autofac.Core;
using NUnit.Framework;
using System.IO;

namespace Autofac.Tests.Core
{
[TestFixture]
public class DependencyResolutionExceptionTests
{
[SetUp]
public void SetUp()
{
//Explicitly set culture for comparison of Exception strings
System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture;
System.Threading.Thread.CurrentThread.CurrentUICulture = System.Globalization.CultureInfo.InvariantCulture;
}

[Test(Description = "Issue 343: The inner exception message should be included in the main exception message.")]
public void Message_InnerExceptionMessageIncluded()
{
Expand Down

0 comments on commit c985cda

Please sign in to comment.