Skip to content

Commit 47de565

Browse files
committed
Don't test that there is a local database, doesn't work for sharding
1 parent 78ae518 commit 47de565

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/mongo/client_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@
574574

575575
it 'returns a list of database names' do
576576
expect(root_authorized_client.database_names).to include(
577-
'admin', 'local', TEST_DB
577+
'admin', TEST_DB
578578
)
579579
end
580580
end
@@ -585,7 +585,7 @@
585585
expect(
586586
root_authorized_client.list_databases.collect do |i|
587587
i['name']
588-
end).to include('admin', 'local', TEST_DB)
588+
end).to include('admin', TEST_DB)
589589
end
590590
end
591591
end

0 commit comments

Comments
 (0)