Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Apr 15, 2024
1 parent 74fb4f3 commit 8e3c693
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class TemperatureControlWidgetFactory : StatusBarWidgetFactory {
return Consumer { event: MouseEvent ->
val widgetComp = event.component
if (widgetComp != null) {
val modePanel = Panel()
val modePanel = JPanel()
modePanel.layout = VerticalLayout(0)
modePanel.add(JBLabel("AI Coding Assistant"))

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.simiacryptus.aicoder.util

import com.github.simiacryptus.diff.ApxPatchUtil
import com.github.simiacryptus.diff.PatchUtil
import org.junit.Assert.assertTrue
import org.junit.Test

Expand Down Expand Up @@ -70,7 +70,7 @@ class ApxPatchUtilTest {

@Test
fun testPatch() {
val result = ApxPatchUtil.patch(source, patch)
val result = PatchUtil.patch(source, patch)
println(result)
assertTrue(result.contains("for (value in values"))
}
Expand Down

0 comments on commit 8e3c693

Please sign in to comment.