mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 14:20:19 +00:00
Fix keys instead of values in test
This commit is contained in:
@@ -48,7 +48,7 @@ test("createStatusReportBase", async (t) => {
|
||||
setupEnvironmentAndStub(tmpDir);
|
||||
|
||||
const features: QueriedFeatures = Object.fromEntries(
|
||||
Object.keys(Feature).map((key) => [key, { value: true }]),
|
||||
Object.values(Feature).map((key) => [key, { value: true }]),
|
||||
);
|
||||
|
||||
const statusReport = await createStatusReportBase(
|
||||
|
||||
Reference in New Issue
Block a user