Skip to content

Commit

Permalink
Shortening maximum line length in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorris3 committed Jan 9, 2020
1 parent d1f8490 commit e498b27
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions hipparchus/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@
from ..io import EchelleSpectrum, Template, Spectrum
from ..ccf import cross_corr

lkca4_url = "https://drive.google.com/uc?export=download&id=1x3nIg1P5tYFQqJrwEpQU11XQOs3ImH3v"
proxima_url = "https://drive.google.com/uc?export=download&id=1I7E1x1XRjcxXNQXiuaajb_Jz7Wn2N_Eo"
lkca4_id = "1x3nIg1P5tYFQqJrwEpQU11XQOs3ImH3v"
proxima_id = "1I7E1x1XRjcxXNQXiuaajb_Jz7Wn2N_Eo"
# T=3000 K, Molecule=TiO:
template_url = "https://drive.google.com/uc?export=download&id=1eGUBfk7Q9zaXgJQJtVFB6pit7cmoGCpn"
template_id = "1eGUBfk7Q9zaXgJQJtVFB6pit7cmoGCpn"

base_url = "https://drive.google.com/uc?export=download&id={0}"

lkca4_url = base_url.format(lkca4_id)
proxima_url = base_url.format(proxima_id)
template_url = base_url.format(template_id)


@pytest.mark.remote_data
Expand Down

0 comments on commit e498b27

Please sign in to comment.