Skip to content

Commit

Permalink
Merge pull request #56 from awseward/fix-user-tests
Browse files Browse the repository at this point in the history
Fix "broken" User tests
  • Loading branch information
awseward authored Apr 14, 2017
2 parents 0ef3496 + 6ce813e commit f329017
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Bugsnag.NET.Tests/Request/UserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ namespace Bugsnag.NET.Tests.Request
{
class UserTests
{
static Guid _guidId = Guid.NewGuid();
static string _stringId = System.IO.Path.GetRandomFileName().Replace(".", "");
static Guid _guidId = Guid.Parse("72eae7d5-b3c9-43fd-8fa6-5dae60d509a7");
static string _stringId = "q5OKLQpuYNmtiZ5wx/Aa+JkozBKaSBKI9ImYRG+1==";
static int _intId = 8675309;
static object[] _commonIds = new object[] { _guidId, _stringId, _intId };
static string _name = "Robert Paulson";
Expand All @@ -21,7 +21,6 @@ class UserTests
public static object[] CommonIds { get { return _commonIds; } }

[TestCaseSource("CommonIds")]
[Ignore("Possible bug in NUnit (`Test adapter sent back a result for an unknown test case.`)")]
public void IdIsCorrect(object id)
{
var user = _BuildUser(id, _name, _email);
Expand Down

0 comments on commit f329017

Please sign in to comment.