summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-05 20:52:20 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-05 20:52:20 +0000
commitfa98babe6a72b8af5975e09f76bf8ca7ab48d8c2 (patch)
tree2f7d6abd0915924459f569af0a54807fac721355
parentb2cc43523f7bb309cecd6071de51a1677e5d15cf (diff)
downloadchromium_src-fa98babe6a72b8af5975e09f76bf8ca7ab48d8c2.zip
chromium_src-fa98babe6a72b8af5975e09f76bf8ca7ab48d8c2.tar.gz
chromium_src-fa98babe6a72b8af5975e09f76bf8ca7ab48d8c2.tar.bz2
Fix missing assignment in helper_unittest.
TBR=tony git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15336 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/installer/util/helper_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/helper_unittest.cc b/chrome/installer/util/helper_unittest.cc
index 9430f25..d9985d8 100644
--- a/chrome/installer/util/helper_unittest.cc
+++ b/chrome/installer/util/helper_unittest.cc
@@ -22,7 +22,7 @@ namespace {
virtual void SetUp() {
// Name a subdirectory of the user temp directory.
ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &test_dir_));
- test_dir_.AppendASCII("SetupHelperTest");
+ test_dir_ = test_dir_.AppendASCII("SetupHelperTest");
// Create a fresh, empty copy of this test directory.
file_util::Delete(test_dir_, true);