Replace fest with assertj (#32770)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/32770

Fest is EOL and is replaced by assertj, originally a fork of Fest. This change replaces the usages in internal tests and removes the dependency.

Changelog:
[Internal][Android] Replace fest with assertj

Reviewed By: genkikondo

Differential Revision: D33143454

fbshipit-source-id: c1cbe5b064d007018f73858b2913806c11aa08af
This commit is contained in:
Andrei Shikov
2021-12-16 10:40:37 -08:00
committed by Facebook GitHub Bot
parent a4b9e4c978
commit 8367fc3836
42 changed files with 58 additions and 80 deletions
@@ -7,8 +7,8 @@
package com.facebook.react.uimanager;
import static org.fest.assertions.api.Assertions.assertThat;
import static org.fest.assertions.api.Assertions.offset;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.offset;
import android.graphics.drawable.ColorDrawable;
import android.view.View;