chore: change color codes to lowercase (#198)

* chore: change color codes to lowercase

* fix: tests
This commit is contained in:
Anurag Hazra
2020-07-26 14:44:20 +05:30
committed by GitHub
parent 9bd1bad491
commit 8be88461b4
4 changed files with 17 additions and 17 deletions

View File

@ -154,7 +154,7 @@ describe("Test renderRepoCard", () => {
expect(iconClassStyles.fill).toBe("#586069");
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
"fill",
"#FFFEFE"
"#fffefe"
);
});

View File

@ -104,7 +104,7 @@ describe("Test renderStatsCard", () => {
expect(iconClassStyles.fill).toBe("#4c71f2");
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
"fill",
"#FFFEFE"
"#fffefe"
);
});

View File

@ -139,7 +139,7 @@ describe("Test renderTopLanguages", () => {
expect(langNameStyles.fill).toBe("#333");
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
"fill",
"#FFFEFE"
"#fffefe"
);
});