Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ var resolve = require( 'path' ).resolve;
var tape = require( 'tape' );
var isObjectArray = require( '@stdlib/assert/is-object-array' );
var contains = require( '@stdlib/assert/contains' );
var lint = require( './../lib/lint.js' );


// FIXTURES //
Expand All @@ -35,8 +36,6 @@ var missingNamePath = join( __dirname, 'fixtures', 'missing-name.json' );
var wrongScopePath = join( __dirname, 'fixtures', 'wrong-scope.json' );
var nameMismatchPath = join( __dirname, 'fixtures', 'name-mismatch.json' );

var lint = require( './../lib/lint.js' );


// TESTS //

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
var rsa1sa2n = require( './fixtures/row_major_sa1_sa2n.json' );
var rsa1nsa2n = require( './fixtures/row_major_sa1n_sa2n.json' );
var rcap = require( './fixtures/row_major_complex_access_pattern.json' );

var cu = require( './fixtures/column_major_u.json' );
var cl = require( './fixtures/column_major_l.json' );
var cxp = require( './fixtures/column_major_xp.json' );
Expand Down Expand Up @@ -1372,7 +1371,7 @@
t.end();
});

tape( 'the function supports complex access patterns (column-major)', function test( t ) {

Check warning on line 1374 in lib/node_modules/@stdlib/blas/base/gsyr/test/test.ndarray.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

File has too many lines (1032). Maximum allowed is 1000
var expected;
var data;
var out;
Expand Down
Loading