Skip to content

Commit

Permalink
Update test_read_csv_file.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentlaucsb committed May 26, 2024
1 parent ade1e98 commit 2607ee0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_read_csv_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@ TEST_CASE("Prevent Column Names From Being Overwritten", "[csv_col_names_overwri
// get_file_info()
TEST_CASE("get_file_info() Test", "[test_file_info]") {
SECTION("ints.csv") {
CSVReader reader("./tests/data/fake_data/ints.csv");
CSVRow row;
while (reader.read_row(row)) {
std::cout << row[0] << " " << reader.n_rows() << std::endl;
}

CSVFileInfo info = get_file_info(
"./tests/data/fake_data/ints.csv");

Expand Down

0 comments on commit 2607ee0

Please sign in to comment.