Skip to content

Commit 3c39bbe

Browse files
author
David Chu
committed
test: includes colon as a separator
1 parent 25ebf8a commit 3c39bbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/fixtures/config.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[section1]
22

33
any=1
4-
any2=true
4+
any2:true
55
not_int = hello
66
not_int_arr = a b c d e
77

test/tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@ TEST(INIReader, read_big_file) {
110110
}
111111

112112
TEST(INIReader, dulicate_keys) {
113-
EXPECT_THROW(INIReader r{"./fixtures/duplicate_keys.ini"},
113+
EXPECT_THROW(INIReader{"./fixtures/duplicate_keys.ini"},
114114
std::runtime_error);
115115
}

0 commit comments

Comments
 (0)