From 0dc9b950331e8c2d804873ffd462b6cec9ba73cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 21 Mar 2017 11:19:48 +0100 Subject: [PATCH] [platform-tests] IntSLRUCacheTest -> TestCase --- .../testSrc/com/intellij/util/IntSLRUCacheTest.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/platform-tests/testSrc/com/intellij/util/IntSLRUCacheTest.groovy b/platform/platform-tests/testSrc/com/intellij/util/IntSLRUCacheTest.groovy index 15e7eee8a552..6a215c991439 100644 --- a/platform/platform-tests/testSrc/com/intellij/util/IntSLRUCacheTest.groovy +++ b/platform/platform-tests/testSrc/com/intellij/util/IntSLRUCacheTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright 2000-2016 JetBrains s.r.o. + * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,13 +15,13 @@ */ package com.intellij.util -import com.intellij.testFramework.UsefulTestCase import com.intellij.util.containers.IntObjectLinkedMap +import junit.framework.TestCase /** * @author peter */ -class IntSLRUCacheTest extends UsefulTestCase { +class IntSLRUCacheTest extends TestCase { static IntSLRUCache> createCache(int prot = 1, int prob = 1) { return new IntSLRUCache>(prot, prob)