Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aquatiko committed Jul 11, 2019
1 parent 9c7e7e1 commit aba8c7e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/plots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ using AstroImages: pix2world_xformatter, pix2world_yformatter
@test getfield(rec[1], 1) == Dict{Symbol, Any}(:seriestype => :heatmap,
:aspect_ratio => :equal,
:color => :grays)
<<<<<<< HEAD
@test rec[1].args == (img.data,)
@test rec[1].args == (img.data[1],)

rec = RecipesBase.apply_recipe(Dict{Symbol, Any}(), img, wcs1)
@test rec[1].plotattributes[:xlabel] == "Right Ascension (ICRS)" && rec[1].plotattributes[:ylabel] == "Declination (ICRS)"
Expand Down Expand Up @@ -43,7 +42,6 @@ end

@test pix2world_yformatter(255, wcs1) == "13.98°"
@test pix2world_yformatter(255, wcs2) == 255.0
=======
@test rec[1].args == (img.data[1],)

img = AstroImage((data,data,data))
Expand All @@ -52,5 +50,4 @@ end
:aspect_ratio => :equal,
:color => :grays)
@test rec[1].args == (img.data[1],)
>>>>>>> 0827e23ac9e97cabdcc067d775350d4d4cc2aeb3
end

0 comments on commit aba8c7e

Please sign in to comment.