Skip to content
This repository has been archived by the owner on Oct 27, 2020. It is now read-only.

Commit

Permalink
Fixing paths and file names, closes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
mapio committed Feb 9, 2017
1 parent 5580191 commit 52c0807
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
release
.cache
2 changes: 1 addition & 1 deletion bin/mkdist
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ else
fi
cd zerve
./make_zerve ../../src
cp zerve ../../bin/zv
cp zerve ../../release/sv
2 changes: 1 addition & 1 deletion src/cuv.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function update_case( delta ) {
var cur = cases[ current.case ];
$case.text( cur.name );
var res = [];
$.each( [ 'args', 'input', 'output', 'actual', 'errors', 'diffs' ], function( i, e ) {
$.each( [ 'args', 'input', 'expected', 'actual', 'errors', 'diffs' ], function( i, e ) {
if ( cur[ e ] === null ) return;
var lines = cur[ e ].split( '\n' );
var content = lines.length > MAX_NUM_LINES ? lines.slice( 0, MAX_NUM_LINES ).join( '\n' ) + '\n<<TRUNCATED>>\n': lines.join( '\n' );
Expand Down

0 comments on commit 52c0807

Please sign in to comment.