Skip to content

Commit

Permalink
Unbreaking builds and hearts
Browse files Browse the repository at this point in the history
  • Loading branch information
anaisbetts committed May 27, 2013
1 parent ae04c9c commit 0e0b0da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -26,7 +26,8 @@ public void DependencyObjectObservableForPropertySmokeTest()
{
var fixture = new DepObjFixture();
var binder = new DependencyObjectObservableForProperty();
Assert.NotEqual(0, binder.GetAffinityForObject(typeof (DepObjFixture)));
Assert.NotEqual(0, binder.GetAffinityForObject(typeof (DepObjFixture), "TestString"));
Assert.Equal(0, binder.GetAffinityForObject(typeof (DepObjFixture), "DoesntExist"));

var results = new List<IObservedChange<object, object>>();
var disp1 = binder.GetNotificationForProperty(fixture, "TestString").Subscribe(results.Add);
Expand Down
2 changes: 1 addition & 1 deletion ReactiveUI/RxApp.cs
Expand Up @@ -41,7 +41,7 @@ public static class RxApp
{
public static void Initialize()
{
_TaskpoolScheduler = TaskPoolScheduler.Default;
_TaskpoolScheduler = Scheduler.TaskPool;

DefaultExceptionHandler = Observer.Create<Exception>(ex => {
// NB: If you're seeing this, it means that an
Expand Down

0 comments on commit 0e0b0da

Please sign in to comment.