Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test
  • Loading branch information
harryterkelsen committed Jan 16, 2024
commit d4404031cf105abcf8ba01a0d6466913f24c7a88
4 changes: 3 additions & 1 deletion lib/web_ui/test/canvaskit/display_canvas_factory_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ class DummyDisplayCanvas extends DisplayCanvas {
@override
void dispose() {}

final DomElement _element = createDomElement('div');

@override
DomElement get hostElement => throw UnimplementedError();
DomElement get hostElement => _element;

@override
void initialize() {}
Expand Down