Remove fixtures prefix

This commit is contained in:
Aoran Zeng 2025-07-16 11:19:18 +08:00
parent 15ce694967
commit 2387b4e9f8
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98
6 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
use lib '../lib'; use lib '../lib';
use Parser; use Parser;
my $test-file1 = './fixture/test-hierarchy-with-root.md'; my $test-file1 = './fixture/hierarchy-with-root.md';
my $test-file2 = './fixture/test-hierarchy-without-root.md'; my $test-file2 = './fixture/hierarchy-without-root.md';
my $parser1 = Parser::Parser.new($test-file1); my $parser1 = Parser::Parser.new($test-file1);
my $parser2 = Parser::Parser.new($test-file2); my $parser2 = Parser::Parser.new($test-file2);