From b0580cdfc297019aa5f92943c39c7d0a600a8f86 Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Tue, 28 Jun 2022 18:45:33 -0700 Subject: [PATCH] Fix some spellings Signed-off-by: Derek Collison --- .travis.yml | 6 +++--- scripts/runTestsOnTravis.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61f67cd5..26d8c508 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ go_import_path: github.com/nats-io/nats-server jobs: include: - - name: "Compile and various checks" + - name: "Compile and various other checks" env: TEST_SUITE=compile - name: "Run TestNoRace tests" env: TEST_SUITE=no_race_tests @@ -27,11 +27,11 @@ jobs: env: TEST_SUITE=js_cluster_tests - name: "Run JetStream super cluster tests" env: TEST_SUITE=js_super_cluster_tests - - name: "Run non JetStreams tests form the server package" + - name: "Run non JetStream tests from the server package" env: TEST_SUITE=srv_pkg_non_js_tests - name: "Run all tests from all other packages" env: TEST_SUITE=non_srv_pkg_tests - - name: "Compile and various checks with older Go release" + - name: "Compile with older Go release" go: 1.17.x env: TEST_SUITE=build_only diff --git a/scripts/runTestsOnTravis.sh b/scripts/runTestsOnTravis.sh index 8f42cc62..e1af4df4 100755 --- a/scripts/runTestsOnTravis.sh +++ b/scripts/runTestsOnTravis.sh @@ -32,7 +32,7 @@ elif [ "$1" = "no_race_tests" ]; then elif [ "$1" = "js_tests" ]; then - # Run JetStream non-clustere tests. By convention, all JS tests start + # Run JetStream non-clustered tests. By convention, all JS tests start # with `TestJetStream`. We exclude the clustered and super-clustered # tests by using the `skip_js_cluster_tests` and `skip_js_super_cluster_tests` # build tags.