Fixed unit test

This commit is contained in:
Philipp Czora
2018-10-09 11:52:16 +02:00
parent 1606add59a
commit 6475320e61

View File

@@ -171,7 +171,7 @@ describe("branches", () => {
it("should return undefined if branch does not exist", () => {
const branch = getBranch(state, repository, "branch42");
expect(branch).toBeUndefined();
expect(branch).toBeFalsy();
});
});
});