Skip to content

Commit 6e49ad0

Browse files
committed
lint fixes
1 parent 3a0eeb0 commit 6e49ad0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/Ported/Issues/RavenDB_6558.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,3 @@ describe("RavenDB-6558", function () {
116116
}
117117
});
118118
});
119-

test/TestDriver/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ export abstract class RavenTestDriver implements IDisposable {
223223

224224
// timeout if url won't show up after 5s
225225
return result
226-
.tap(url => console.log("RavenDB server URL:", url))
226+
// tslint:disable-next-line:no-console
227+
.tap(url => console.log("DEBUG: RavenDB server URL", url))
227228
.timeout(5000)
228229
.catch((err) => {
229230
throwError("UrlScrappingError", "Error scrapping URL from server process output: "

test/Utils/TestUtil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ export async function storeNewDoc(
199199
const order = Object.assign(new clazz(), data);
200200
await session.store(order, id);
201201
return order;
202-
}
202+
}

0 commit comments

Comments
 (0)