diff --git a/README.md b/README.md
index 3a52ee8e..abcb375b 100644
--- a/README.md
+++ b/README.md
@@ -43,15 +43,15 @@ check following list of available adapters
MongoDB |
- jugglingdb-mongodb |
+ jugglingdb-mongodb |
Anatoliy Chakkaev |
|
- MySQL |
- jugglingdb-mysql |
+ MySQL |
+ jugglingdb-mysql |
Anatoliy Chakkaev |
|
@@ -59,7 +59,7 @@ check following list of available adapters
CouchDB / nano |
- jugglingdb-nano |
+ jugglingdb-nano |
Nicholas Westlake |
|
@@ -67,7 +67,7 @@ check following list of available adapters
PostgreSQL |
- jugglingdb-postgres |
+ jugglingdb-postgres |
Anatoliy Chakkaev |
|
@@ -75,15 +75,15 @@ check following list of available adapters
Redis |
- jugglingdb-redis |
+ jugglingdb-redis |
Anatoliy Chakkaev |
|
- SQLite |
- jugglingdb-sqlite3 |
+ SQLite |
+ jugglingdb-sqlite3 |
Anatoliy Chakkaev |
|
@@ -118,7 +118,7 @@ check following list of available adapters
If you want to create your own jugglingdb adapter, you should publish your
adapter package with name `jugglingdb-ADAPTERNAME`. Creating adapter is simple,
-check [jugglingdb-redis](/1602/jugglingdb-redis) for example. JugglingDB core
+check [jugglingdb-redis](https://github.com/1602/jugglingdb-redis) for example. JugglingDB core
exports common tests each adapter should pass, you could create your adapter in
TDD style, check that adapter pass all tests defined in `test/common_test.js`.
diff --git a/test/common_test.js b/test/common_test.js
index f9f1a84b..70250f06 100644
--- a/test/common_test.js
+++ b/test/common_test.js
@@ -531,7 +531,6 @@ function testOrm(schema) {
test.ok(u.posts.create, 'Method defined: posts.create');
u.posts.create(function (err, post) {
if (err) return console.log(err);
- // test.ok(post.author(), u.id);
u.posts(function (err, posts) {
test.equal(posts.pop().id.toString(), post.id.toString());
test.done();