Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
fix test for new uv order (#72)
Browse files Browse the repository at this point in the history
* fix test for new uv order, exclude 0.6 on appveyor
  • Loading branch information
SimonDanisch authored Jan 27, 2017
1 parent cabb555 commit 2df5724
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ environment:
matrix:
- JULIAVERSION: "julialang/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
- JULIAVERSION: "julialang/bin/winnt/x86/0.4/julia-0.5-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.4/julia-0.5-latest-win64.exe"
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"

branches:
only:
Expand Down
12 changes: 6 additions & 6 deletions test/decompose.jl
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ end

uvs = decompose(UV{Float64}, mesh)
uv_target = UV{Float64}[
(0.0,0.0)
(0.5,0.0)
(1.0,0.0)
(0.0,0.5)
(0.5,0.5)
(1.0,0.5)
(0.0,1.0)
(0.5,1.0)
(1.0,1.0)
(0.0,0.5)
(0.5,0.5)
(1.0,0.5)
(0.0,0.0)
(0.5,0.0)
(1.0,0.0)
]
@test uvs == uv_target
end
Expand Down

0 comments on commit 2df5724

Please sign in to comment.