Skip to content

Commit

Permalink
small tweak to download_get test, but still failing due to GBIF serve…
Browse files Browse the repository at this point in the history
…r errors

i assume due to their scheduled down time
  • Loading branch information
sckott committed Jun 22, 2017
1 parent e5e998d commit 771e417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-occurrences-download_get.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"""Tests for occurrences module - download_get methods"""
import os
from pygbif import occurrences
from pygbif import occurrences as occ

def test_download_get():
"occurrences.download_get - basic test"
key = "0000066-140928181241064"
res = occurrences.download_get(key)
res = occ.download_get(key)
assert 'dict' == res.__class__.__name__
assert len(res) == 3
assert key == res['key']

0 comments on commit 771e417

Please sign in to comment.