Skip to content

Commit

Permalink
Fix analysis issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Jan 24, 2025
1 parent 856cd45 commit b0129b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hive/test/tests/frames.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import 'package:hive_ce/src/binary/binary_writer_impl.dart';
import 'package:hive_ce/src/binary/frame.dart';
import 'package:hive_ce/src/hive_impl.dart';
import 'package:test/test.dart';
import 'package:path/path.dart' as path;

export '../generated/frame_values.g.dart';
export '../generated/frame_values_encrypted.g.dart';
Expand Down Expand Up @@ -182,7 +183,7 @@ Future<void> buildGoldens() async {
String varName,
Uint8List Function(Frame frame) transformer,
) async {
final file = File('test/generated/$fileName.g.dart');
final file = File(path.join('test', 'generated', '$fileName.g.dart'));
await file.create();
final code = StringBuffer();
code.writeln("import 'dart:typed_data';\n");
Expand Down

0 comments on commit b0129b2

Please sign in to comment.