Skip to content

Commit

Permalink
RavenDB-4127 Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
grisha-kotler committed Dec 16, 2015
1 parent 60dd568 commit 99e2a7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public async Task<HttpResponseMessage> GetReplicationInfo()
}
catch (Exception e)
{
if (e.Message.Contains("Could not figure out what to do") == false)
if (e.Message.Contains("replication bundle not activated") == false)
throw;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public Task<HttpResponseMessage> GetReplicationInfo()
}
catch (Exception e)
{
if (e.Message.Contains("Could not figure out what to do") == false)
if (e.Message.Contains("replication bundle not activated") == false)
throw;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public HttpResponseMessage GetReplicationInfo()
}
catch (Exception e)
{
if (e.Message.Contains("Could not figure out what to do") == false)
if (e.Message.Contains("replication bundle not activated") == false)
throw;
}

Expand Down

0 comments on commit 99e2a7d

Please sign in to comment.