Skip to content

Commit

Permalink
fix reference commit for old versions of Julia/Trixi.jl (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha authored Apr 8, 2024
1 parent f78a5fe commit 110975f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test_trixi2vtk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ end
# Note: The purpose of using a specific commit hash (instead of `main`) is to be able to tie a given
# version of Trixi2Vtk to a specific version of the test file repository. This way, also tests
# for older Trixi2Vtk releases should continue to work.
const TEST_REFERENCE_COMMIT = "86a43fe8dc254130345754fb512268204cf2233c"
if VERSION < v"1.8"
const TEST_REFERENCE_COMMIT = "c0a966b06489f9b2ee3aefeb0a5c0dae733df36f"
else
const TEST_REFERENCE_COMMIT = "86a43fe8dc254130345754fb512268204cf2233c"
end

# Local folder to store downloaded reference files. If you change this, also adapt `../.gitignore`!
const TEST_REFERENCE_DIR = "reference_files"
Expand Down

0 comments on commit 110975f

Please sign in to comment.