Fix another hard-coded / as a path separator
This commit is contained in:
parent
f6325746aa
commit
d4b2c58dc8
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ vector<TestEntry> read_real_language_corpus(string language_name) {
|
|||
|
||||
string corpus_directory = join_path({"test", "fixtures", "grammars", language_name, "corpus"});
|
||||
for (string &test_filename : list_directory(corpus_directory)) {
|
||||
for (TestEntry &entry : parse_test_entries(read_file(corpus_directory + "/" + test_filename))) {
|
||||
for (TestEntry &entry : parse_test_entries(read_file(join_path({corpus_directory, test_filename})))) {
|
||||
result.push_back(entry);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue