diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-09-28 16:04:41 +0100 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-09-28 16:04:41 +0100 |
commit | ce75d2ce4e405b6c5ddec069fc9844bed64d548d (patch) | |
tree | 3e0c4ac02e63929300e2515133de77ef8f73b5a1 /utils | |
parent | 4e225d86f5c0511c8e7fab42587e54041904d9a9 (diff) |
fix broken compile on weights test
Diffstat (limited to 'utils')
-rw-r--r-- | utils/weights_test.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/utils/weights_test.cc b/utils/weights_test.cc index 8a4c26ef..938b311f 100644 --- a/utils/weights_test.cc +++ b/utils/weights_test.cc @@ -14,11 +14,10 @@ class WeightsTest : public testing::Test { virtual void TearDown() { } }; - TEST_F(WeightsTest,Load) { - Weights w; - w.InitFromFile("test_data/weights"); - w.WriteToFile("-"); + vector<weight_t> v; + Weights::InitFromFile("test_data/weights", &v); + Weights::WriteToFile("-", v); } int main(int argc, char **argv) { |