Skip to content

Commit

Permalink
Changes to publish version 3.5 beta
Browse files Browse the repository at this point in the history
git-svn-id: http://moq.googlecode.com/svn/trunk@600 b33fba48-7441-0410-8d5c-f397f7ceaa6c
  • Loading branch information
marianoor committed Jul 17, 2009
1 parent 683bc0d commit 7c75c02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
[assembly: AssemblyProduct("Moq")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("3.1.416.3")]
[assembly: AssemblyFileVersion("3.1.0.0")]
[assembly: AssemblyVersion("3.5.716.1")]
[assembly: AssemblyFileVersion("3.5.0.0")]

[assembly: ComVisible(false)]
[assembly: NeutralResourcesLanguage("en")]
Expand Down
2 changes: 1 addition & 1 deletion UnitTests/Regressions/IssueReportsFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ public void TestRecursive()
mock.Setup(c => c.HttpContext.Response.Write("stuff"));

mock.Object.HttpContext.Response.Write("stuff");
mock.Object.HttpContext.Response.ContentEncoding = Encoding.UTF32;
mock.Object.HttpContext.Response.ContentEncoding = Encoding.UTF8;

Assert.Throws<MockException>(() => mock.VerifySet(
c => c.HttpContext.Response.ContentEncoding = It.IsAny<Encoding>(),
Expand Down

0 comments on commit 7c75c02

Please sign in to comment.