Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Make the parameters to assertSameElements non-nullable.
Browse files Browse the repository at this point in the history
RELNOTES[INC]: assertSameElements no longer accepts nulls

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=229759723
  • Loading branch information
nanaze authored and shicks committed Jan 22, 2019
1 parent 344b6f9 commit 06b1d88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions closure/goog/testing/asserts.js
Original file line number Diff line number Diff line change
Expand Up @@ -1086,11 +1086,11 @@ var assertElementsRoughlyEqual =
/**
* Compares elements of two array-like or iterable objects using strict equality
* without taking their order into account.
* @param {string|?IArrayLike|?Iterable} a Assertion message or the
* @param {string|!IArrayLike|!Iterable} a Assertion message or the
* expected elements.
* @param {?IArrayLike|?Iterable} b Expected elements or the actual
* @param {!IArrayLike|!Iterable} b Expected elements or the actual
* elements.
* @param {?IArrayLike|?Iterable=} opt_c Actual elements.
* @param {!IArrayLike|!Iterable=} opt_c Actual elements.
*/
var assertSameElements = goog.testing.asserts.assertSameElements = function(
a, b, opt_c) {
Expand Down

0 comments on commit 06b1d88

Please sign in to comment.