Change 'assert' handle to pass only upon exactly 1 argument is received, and the argument is boolean true; update internal test suite correspondingly.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright 2014 Samsung Electronics Co., Ltd.
|
||||
// Copyright 2014-2015 Samsung Electronics Co., Ltd.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
@@ -29,4 +29,4 @@ switch ("key") {
|
||||
break;
|
||||
}
|
||||
|
||||
assert(matchesCount === 1 ? 1 : 0);
|
||||
assert (matchesCount === 1);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2014 Samsung Electronics Co., Ltd.
|
||||
// Copyright 2014-2015 Samsung Electronics Co., Ltd.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
@@ -25,4 +25,4 @@ switch ("key") {
|
||||
++counter;
|
||||
}
|
||||
|
||||
assert(counter == 4 ? 1 : 0);
|
||||
assert (counter == 4);
|
||||
|
||||
Reference in New Issue
Block a user