Skip to content

Commit 8836601

Browse files
committed
Fix lint errors in Library.test.js
1 parent 9818761 commit 8836601

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/dom/models/__tests__/Library.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ test('should list the libraries', () => {
5959
expect(libraries[0].type).toBe('Library')
6060
})
6161

62-
test('should be able to get the list of symbols to be imported', (_context, documentData) => {
62+
test('should be able to get the list of symbols to be imported', () => {
6363
return createLibrary().then((lib) => {
6464
try {
6565
// Library.getImportableSymbolReferencesForDocument() and its sibling methods all expect
@@ -79,7 +79,7 @@ test('should be able to get the list of symbols to be imported', (_context, docu
7979
})
8080
})
8181

82-
test('should return references to already imported local copies of symbols if they exist', (_context, _) => {
82+
test('should return references to already imported local copies of symbols if they exist', () => {
8383
return createLibrary().then((lib) => {
8484
try {
8585
const document = new Document()

0 commit comments

Comments
 (0)