Skip to content

Commit

Permalink
fixed test to include stream
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Carpenter committed Oct 25, 2012
1 parent 816f100 commit 965de49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/gm/parser_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
bool is_parsable(const std::string& file_name) {
stan::gm::program prog;
std::ifstream fs(file_name.c_str());
bool parsable = stan::gm::parse(fs, file_name, prog);
bool parsable = stan::gm::parse(0, fs, file_name, prog);
return parsable;
}

Expand Down

0 comments on commit 965de49

Please sign in to comment.