Skip to content

Commit

Permalink
♻️ refactor: コミット漏れ
Browse files Browse the repository at this point in the history
Issue #145
  • Loading branch information
susatthi committed May 25, 2022
1 parent a91969b commit ecf5914
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lib/presentation/repo/components/order_toggle_button.dart
Expand Up @@ -9,7 +9,7 @@ import '../../../domain/entities/repo_search_repos_order.dart';
import '../../../localizations/strings.g.dart';
import '../../../utils/logger.dart';
import '../state/list_view_state.dart';
import 'search_repos_order.dart';
import '../state/search_repos_order.dart';

/// リポジトリ検索用オーダー値変更ボタン
class RepoOrderToggleButton extends ConsumerWidget {
Expand Down
2 changes: 1 addition & 1 deletion lib/presentation/repo/components/search_text_button.dart
Expand Up @@ -7,7 +7,7 @@ import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:go_router/go_router.dart';

import '../pages/search_page.dart';
import 'search_repos_query.dart';
import '../state/search_repos_query.dart';
import 'search_text_field.dart';

/// リポジトリ検索用テキストボタン
Expand Down
2 changes: 1 addition & 1 deletion lib/presentation/repo/components/search_text_field.dart
Expand Up @@ -7,7 +7,7 @@ import 'package:flutter_riverpod/flutter_riverpod.dart';

import '../../../localizations/strings.g.dart';
import '../../../utils/logger.dart';
import 'search_repos_query.dart';
import '../state/search_repos_query.dart';

/// リポジトリ検索用テキストフィールド
class RepoSearchTextField extends ConsumerStatefulWidget {
Expand Down
2 changes: 1 addition & 1 deletion test/presentation/repo/components/list_view_test.dart
Expand Up @@ -11,8 +11,8 @@ import 'package:github_search/localizations/strings.g.dart';
import 'package:github_search/presentation/common/components/error_view.dart';
import 'package:github_search/presentation/common/components/list_loader.dart';
import 'package:github_search/presentation/repo/components/list_view.dart';
import 'package:github_search/presentation/repo/components/search_repos_query.dart';
import 'package:github_search/presentation/repo/pages/view_page.dart';
import 'package:github_search/presentation/repo/state/search_repos_query.dart';
import 'package:go_router/go_router.dart';
import 'package:mocktail/mocktail.dart';
import 'package:number_display/number_display.dart';
Expand Down
Expand Up @@ -8,7 +8,7 @@ import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:github_search/infrastructure/github/http_client.dart';
import 'package:github_search/presentation/repo/components/order_toggle_button.dart';
import 'package:github_search/presentation/repo/components/search_repos_query.dart';
import 'package:github_search/presentation/repo/state/search_repos_query.dart';

import '../../../test_utils/hive.dart';
import '../../../test_utils/locale.dart';
Expand Down
Expand Up @@ -5,9 +5,9 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:github_search/presentation/repo/components/search_repos_query.dart';
import 'package:github_search/presentation/repo/components/search_text_button.dart';
import 'package:github_search/presentation/repo/pages/search_page.dart';
import 'package:github_search/presentation/repo/state/search_repos_query.dart';
import 'package:go_router/go_router.dart';
import 'package:mocktail/mocktail.dart';

Expand Down
Expand Up @@ -4,8 +4,8 @@

import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:github_search/presentation/repo/components/search_repos_query.dart';
import 'package:github_search/presentation/repo/components/search_text_field.dart';
import 'package:github_search/presentation/repo/state/search_repos_query.dart';

import '../../../test_utils/locale.dart';
import '../../../test_utils/mocks.dart';
Expand Down
2 changes: 1 addition & 1 deletion test/presentation/repo/state/search_repos_order_test.dart
Expand Up @@ -7,7 +7,7 @@ import 'dart:io';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:github_search/domain/entities/repo_search_repos_order.dart';
import 'package:github_search/presentation/repo/components/search_repos_order.dart';
import 'package:github_search/presentation/repo/state/search_repos_order.dart';

import '../../../test_utils/hive.dart';
import '../../../test_utils/locale.dart';
Expand Down
2 changes: 1 addition & 1 deletion test/presentation/repo/state/search_repos_query_test.dart
Expand Up @@ -5,7 +5,7 @@
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:github_search/config/env.dart';
import 'package:github_search/presentation/repo/components/search_repos_query.dart';
import 'package:github_search/presentation/repo/state/search_repos_query.dart';

import '../../../test_utils/locale.dart';

Expand Down
2 changes: 1 addition & 1 deletion test/test_utils/mocks.dart
Expand Up @@ -12,7 +12,7 @@ import 'package:github_search/domain/repositories/repo_repository.dart';
import 'package:github_search/infrastructure/github/http_client.dart';
import 'package:github_search/infrastructure/github/repo_repository.dart';
import 'package:github_search/infrastructure/hive/app_data_repository.dart';
import 'package:github_search/presentation/repo/components/search_repos_query.dart';
import 'package:github_search/presentation/repo/state/search_repos_query.dart';
import 'package:go_router/go_router.dart';
import 'package:http/http.dart' as http;
import 'package:http/testing.dart';
Expand Down

0 comments on commit ecf5914

Please sign in to comment.