Skip to content

Commit d7303be

Browse files
pawelhudakjoannajarmulska
authored andcommitted
typo corrected
1 parent 2351c34 commit d7303be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ KdbSystemDir> bin\ec\test\runAllTests.bat
3333

3434
Following line at the end of the `log` of the `t.collectResults` process indicates successful test execution:
3535

36-
```INFO 2015.09.15 07:27:03.100 test - ==========================> Test Execution COMPLETED with: Teat suites: 6/6, Teat cases: 33/33```
36+
```INFO 2015.09.15 07:27:03.100 test - ==========================> Test Execution COMPLETED with: Test suites: 6/6, Test cases: 33/33```
3737

3838
Following line in the log of the `t.collectResults` process indicates test failure:
3939

40-
```ERROR 2015.09.15 07:21:17.510 test - ==========================> Test Execution FAILED with: Teat suites: 5/6, Teat cases: 32/33```
40+
```ERROR 2015.09.15 07:21:17.510 test - ==========================> Test Execution FAILED with: Test suites: 5/6, Test cases: 32/33```
4141

42-
> Details of testCase errors and test failures are also printe as errors.
42+
> Details of testCase errors and test failures are also printed as errors.
4343
4444
Full test results can be inspected directly in q process once the tests are completed:
4545
```q

test/collectTestResults/collectTestResults.q

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ system"l ",getenv[`EC_QSL_PATH],"/sl.q";
4141
.test.p.printErrors each .test.report[]`testCasesFailed;
4242

4343
msg:"==========================> Test Execution ",$[fail;"FAILED";"COMPLETED"]," with:";
44-
msg,:" Teat suites: ",string[count[suiteTotal]-count[suiteFail]],"/",string[count suiteTotal];
45-
msg,: ", Teat cases: ",string[tcTotal-tcFail],"/",string[tcTotal];
44+
msg,:" Test suites: ",string[count[suiteTotal]-count[suiteFail]],"/",string[count suiteTotal];
45+
msg,: ", Test cases: ",string[tcTotal-tcFail],"/",string[tcTotal];
4646
$[fail;.log.error[`test];.log.info[`test]] msg;
4747
};
4848

0 commit comments

Comments
 (0)