diff --git a/test/28_graph_breadth_first_search_algorithm_code/breadth_first_search_test.dart b/test/28_graph_breadth_first_search_algorithm_code/breadth_first_search_test.dart index 967bae0..2fe552f 100644 --- a/test/28_graph_breadth_first_search_algorithm_code/breadth_first_search_test.dart +++ b/test/28_graph_breadth_first_search_algorithm_code/breadth_first_search_test.dart @@ -3,7 +3,7 @@ import 'package:test/test.dart'; import 'package:cloudnativebasecamp_algo_01_dart/28_graph_breadth_first_search_algorithm_code/breadth_first_search.dart'; void main() { - group("Breadth First Search", () { + group('Breadth First Search', () { // NOTE: The same test data in the video test( 'with 9 nodes undirected graph', diff --git a/test/29_graph_depth_first_search_algorithm_code/depth_first_search_test.dart b/test/29_graph_depth_first_search_algorithm_code/depth_first_search_test.dart index 9a08ec6..e166c4f 100644 --- a/test/29_graph_depth_first_search_algorithm_code/depth_first_search_test.dart +++ b/test/29_graph_depth_first_search_algorithm_code/depth_first_search_test.dart @@ -3,7 +3,7 @@ import 'package:test/test.dart'; import 'package:cloudnativebasecamp_algo_01_dart/29_graph_depth_first_search_algorithm_code/depth_first_search.dart'; void main() { - group("Depth First Search", () { + group('Depth First Search', () { // NOTE: The same test data in the video test( 'with 9 nodes undirected graph',