Skip to content

Commit

Permalink
test: Remove everything of practical use
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-map committed Oct 5, 2024
1 parent f829934 commit 9a44679
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/bot/requestReview.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import fs from 'fs';
import { CallbackParam, ShortcutParam } from '@/slackTypes';
import { isViewSubmitActionParam } from '@/typeGuards';
import { activeReviewRepo } from '@repos/activeReviewsRepo';
Expand Down Expand Up @@ -177,10 +176,8 @@ export const requestReview = {
// log.d(pdf);

// Upload PDF to S3 here.
const pdf = fs.readFileSync(
__dirname + '/Report_Tech_Trials__Auth___Analysis_bskiff_sourceallies.com.pdf',
);
const pdfIdentifier = 'Report_Tech_Trials__Auth___Analysis_bskiff_sourceallies.com.pdf';
const pdf = Buffer.from('test file should be here not this');
await putPdfToS3(pdfIdentifier, pdf);

const numberOfReviewersValue = numberOfReviewers.value;
Expand Down

0 comments on commit 9a44679

Please sign in to comment.