Skip to content

Commit

Permalink
style: 🎨 replace double quote with single quote in graph traversal al…
Browse files Browse the repository at this point in the history
…gorithms tests
  • Loading branch information
moazelsawaf committed Jun 28, 2023
1 parent 44c98e9 commit c8f6c6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit c8f6c6f

Please sign in to comment.