Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1932)

Unified Diff: samples/github/lib/src/tests/github_api_test.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: samples/github/lib/src/tests/github_api_test.dart
diff --git a/samples/github/lib/src/tests/github_api_test.dart b/samples/github/lib/src/tests/github_api_test.dart
index d043bab27a704d64a243dd12d0e4f2d42c218f32..b81696ee3d16908c4bbb2fca855610335e0562b0 100644
--- a/samples/github/lib/src/tests/github_api_test.dart
+++ b/samples/github/lib/src/tests/github_api_test.dart
@@ -27,8 +27,8 @@ void testUser(Server server) {
void testRepository(Server server) {
var user = server.getUser('dart-lang');
- var repo = user.getRepository('fletch');
- Expect.stringEquals('dart-lang/fletch', repo['full_name']);
+ var repo = user.getRepository('dartino');
+ Expect.stringEquals('dart-lang/dartino', repo['full_name']);
}
void testError(Server server) {
@@ -37,8 +37,8 @@ void testError(Server server) {
}
void testCommits(Server server) {
- var user = server.getUser('dart-lang');
- var repo = user.getRepository('fletch');
+ var user = server.getUser('dartino');
+ var repo = user.getRepository('sdk');
var commit = repo.getCommitAt(0);
Expect.stringEquals('Ian Zerny', commit['commit']['author']['name']);
commit = repo.getCommitAt(60);
« no previous file with comments | « samples/github/lib/src/tests/commit_list_test_disabled.dart ('k') | samples/raspberry-pi2/basic/buzzer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698