Skip to content

Commit 8662f7b

Browse files
committed
remove json loading path
1 parent 9690244 commit 8662f7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils/json_loader.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class JsonLoader {
1010
) async {
1111
final cache = <String, String>{};
1212
for (final pattern in globs) {
13-
final jsonPath = "${Directory.current.path}/test/widget/json/$pattern";
13+
final jsonPath = "${Directory.current.path}/$pattern";
1414
await for (final path in Glob(jsonPath).list()) {
1515
if (path is File) {
1616
final file = await (path as File).readAsString();

0 commit comments

Comments
 (0)