Skip to content

Commit 690e266

Browse files
authored
Typo in error test (#25)
* Typo in error test * Updated CHANGELOG
1 parent 6468464 commit 690e266

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## [Latest](https://github.com/cortex-lab/signals/commits/master) [1.3.1]
3+
## [Latest](https://github.com/cortex-lab/signals/commits/master) [1.3.2]
4+
5+
- HOTFIX: A typo causing tests to fail
6+
7+
## [1.3.1]
48

59
- HOTFIX: Duplicate test name in Signals_test; added test for `then` method
610

@@ -43,4 +47,4 @@ Removed unused 'Subscriptable' property
4347
- Signals can map to other signals `a1b9eb`
4448
- Tests for methods and utilities `e016f0`, `3621b1`, `1fb3cd`
4549
- Fix for checking functions in path on new MATLAB versions `e3cb05`
46-
- Added help files for mexnet `ba51d1`
50+
- Added help files for mexnet `ba51d1`

tests/create_test.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
% Test names error
2424
try
25-
[a, b, c] = sig.test.create(net, {'1'});
26-
ex.identifier = '';
25+
[a, b, c] = sig.test.create(net, {'1'});
26+
ex.identifier = '';
2727
catch ex
2828
end
29-
assert(strcmp(ex.identifier, 'Signals:sig:test:create:notEnoughNames'))
29+
assert(strcmpi(ex.identifier, 'signals:sig:test:create:notEnoughNames'))

0 commit comments

Comments
 (0)