Re-enable this test now that I've properly initialized the result member variable.

TBR=tc
Review URL: http://codereview.chromium.org/18602

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8514 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/command_updater_unittest.cc b/chrome/browser/command_updater_unittest.cc
index 43762ce..0297cbc 100644
--- a/chrome/browser/command_updater_unittest.cc
+++ b/chrome/browser/command_updater_unittest.cc
@@ -19,6 +19,8 @@
 
 class TestingCommandObserverMock : public CommandUpdater::CommandObserver {
  public:
+  TestingCommandObserverMock() : enabled_(true) {}
+
   virtual void EnabledStateChangedForCommand(int id, bool enabled) {
     enabled_ = enabled;
   }
@@ -55,7 +57,7 @@
   command_updater.ExecuteCommand(2);
 }
 
-TEST_F(CommandUpdaterTest, DISABLED_TestObservers) {
+TEST_F(CommandUpdaterTest, TestObservers) {
   TestingCommandHandlerMock handler;
   CommandUpdater command_updater(&handler);