From eefb23628e72aa7b7da10e7778e5a4d7a6c66132 Mon Sep 17 00:00:00 2001 From: Julia Beliaeva Date: Tue, 2 Oct 2018 22:46:15 +0300 Subject: [PATCH] [file-history] unify test methods names --- .../impl/test/com/intellij/vcs/log/history/FileHistoryTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/vcs-log/impl/test/com/intellij/vcs/log/history/FileHistoryTest.kt b/platform/vcs-log/impl/test/com/intellij/vcs/log/history/FileHistoryTest.kt index a58b0ed8e25b..ec803d7fc6c3 100644 --- a/platform/vcs-log/impl/test/com/intellij/vcs/log/history/FileHistoryTest.kt +++ b/platform/vcs-log/impl/test/com/intellij/vcs/log/history/FileHistoryTest.kt @@ -205,7 +205,7 @@ class FileHistoryTest { } @Test - fun cyclicHistoryTest() { + fun historyWithCyclicRenames() { val aFile = LocalFilePath("a.txt", false) val bFile = LocalFilePath("b.txt", false) val fileNamesData = FileNamesDataBuilder(aFile) @@ -232,7 +232,7 @@ class FileHistoryTest { } @Test - fun caseOnlyRename() { + fun historyWithCyclicCaseOnlyRenames() { val lowercasePath = LocalFilePath("file.txt", false) val uppercasePath = LocalFilePath("FILE.TXT", false) val mixedPath = LocalFilePath("FiLe.TxT", false)