Skip to content

Commit

Permalink
Update test and remove urllib3 as its no longer needed and was segfau…
Browse files Browse the repository at this point in the history
…lting locally
  • Loading branch information
KaptenJansson committed Sep 6, 2017
1 parent c1ff5f7 commit f6f63ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
urllib3[secure]==1.19.1
requests==2.12.4
webtest==2.0.24
4 changes: 2 additions & 2 deletions src/web_app/js/sdputils_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('Sdp utils test', function() {

result = setCodecParam(result, 'opus/48000', 'useinbandfec', '1');
audioLine = result.split('\r\n')[4];
expect(audioLine).toEqual('a=fmtp:111 minptime=20; useinbandfec=1');
expect(audioLine).toEqual('a=fmtp:111 minptime=20;useinbandfec=1');

result = removeCodecParam(result, 'opus/48000', 'minptime');
audioLine = result.split('\r\n')[4];
Expand All @@ -75,7 +75,7 @@ describe('Sdp utils test', function() {

result = setCodecParam(result, 'opus/48000', 'useinbandfec', '1');
audioLine = result.split('\r\n')[4];
expect(audioLine).toEqual('a=fmtp:111 minptime=20; useinbandfec=1');
expect(audioLine).toEqual('a=fmtp:111 minptime=20;useinbandfec=1');

result = removeCodecParam(result, 'opus/48000', 'minptime');
audioLine = result.split('\r\n')[4];
Expand Down

0 comments on commit f6f63ae

Please sign in to comment.