fix error in test-process-simple

This commit is contained in:
Ryan 2009-06-21 14:07:52 +02:00
Родитель 145072e736
Коммит c5b5815ae7
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -6,8 +6,10 @@ var response = "";
var exit_status = -1;
cat.onOutput = function (chunk) {
if (chunk) response += chunk;
if (response === "hello world") cat.close();
if (chunk) {
response += chunk;
if (response === "hello world") cat.close();
}
};
cat.onError = function (chunk) {
assertEquals(null, chunk);