Skip to content

Commit

Permalink
fixed imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth committed Dec 20, 2023
1 parent fed85b3 commit f10ac74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/unit/trect_utils.nim
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ discard """
"""

import std/[unittest, options, json, sequtils]
import util, rect_utils
import misc/[util, rect_utils]

suite "Rect Utils":

Expand Down
4 changes: 3 additions & 1 deletion tests/unit/ttext_document.nim
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ discard """
"""

import std/[unittest, options, json, sequtils]
import util, traits, text/text_document, config_provider, scripting_api
import misc/[util, traits]
import text/text_document
import config_provider, scripting_api

type MockConfigProvider = ref object

Expand Down
3 changes: 2 additions & 1 deletion tests/unit/tui_node.nim
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ discard """
"""

import std/[unittest, options, json, sequtils]
import util, ui/node
import misc/[util]
import ui/node

template frame(builder: UINodeBuilder, body: untyped) =
block:
Expand Down

0 comments on commit f10ac74

Please sign in to comment.