summaryrefslogtreecommitdiff
path: root/contributors/guide/coding-conventions.md
diff options
context:
space:
mode:
authoreduartua <eduartua@gmail.com>2019-01-31 13:36:01 -0600
committereduartua <eduartua@gmail.com>2019-01-31 13:36:01 -0600
commit0bacd3d192425ee2d5bc2387ec8f000a5b76a22b (patch)
tree7b16d8046e3233ac5f48119af0b253a87f441a10 /contributors/guide/coding-conventions.md
parent1e4beeda12d7f1191cfc53c821f134b00951da00 (diff)
parentb7b910a2351301d39c8de38ff0156aa9aad88d42 (diff)
Some files had conflict with some URL - fixed now
Diffstat (limited to 'contributors/guide/coding-conventions.md')
-rw-r--r--contributors/guide/coding-conventions.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contributors/guide/coding-conventions.md b/contributors/guide/coding-conventions.md
index 87e6432f..880c1833 100644
--- a/contributors/guide/coding-conventions.md
+++ b/contributors/guide/coding-conventions.md
@@ -61,7 +61,7 @@ following Go conventions - `stateLock`, `mapLock` etc.
- [Kubectl conventions](/contributors/devel/kubectl-conventions.md)
- - [Logging conventions](/contributors/devel/logging.md)
+ - [Logging conventions](/contributors/devel/sig-instrumentation/logging.md)
## Testing conventions
@@ -72,7 +72,7 @@ tests
example, see [TestNamespaceAuthorization](https://git.k8s.io/kubernetes/test/integration/auth/auth_test.go)
- Significant features should come with integration (test/integration) and/or
-[end-to-end (test/e2e) tests](/contributors/devel/e2e-tests.md)
+[end-to-end (test/e2e) tests](/contributors/devel/sig-testing/e2e-tests.md)
- Including new kubectl commands and major features of existing commands
- Unit tests must pass on macOS and Windows platforms - if you use Linux
@@ -86,7 +86,7 @@ required when your code does not compile on Windows).
asynchronous thing to happen (e.g. wait for 1 seconds and expect a Pod to be
running). Wait and retry instead.
- - See the [testing guide](/contributors/devel/testing.md) for additional testing advice.
+ - See the [testing guide](/contributors/devel/sig-testing/testing.md) for additional testing advice.
## Directory and file conventions