Skip to content

Commit 19b99aa

Browse files
author
KristofferC
committed
fix links
1 parent 399cd74 commit 19b99aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/Test/docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The `Test` module provides simple *unit testing* functionality. Unit testing is
2424
see if your code is correct by checking that the results are what you expect. It can be helpful
2525
to ensure your code still works after you make changes, and can be used when developing as a way
2626
of specifying the behaviors your code should have when complete. You may also want to look at the
27-
documentation for [adding tests to your Julia Package](@ref adding-tests-to-packages).
27+
documentation for [adding tests to your Julia Package](https://pkgdocs.julialang.org/dev/creating-packages/#Adding-tests-to-the-package).
2828

2929
Simple unit testing can be performed with the `@test` and `@test_throws` macros:
3030

@@ -469,7 +469,7 @@ end
469469
We will need to create those two included files, `math_tests.jl` and `greeting_tests.jl`, and add some tests to them.
470470

471471
> **Note:** Notice how we did not have to specify add `Example` into the `test` environment's `Project.toml`.
472-
> This is a benefit of Julia's testing system that you could [read about more here](@ref adding-tests-to-packages).
472+
> This is a benefit of Julia's testing system that you could [read about more here](https://pkgdocs.julialang.org/dev/creating-packages/).
473473
474474
#### Writing Tests for `math_tests.jl`
475475

0 commit comments

Comments
 (0)