Skip to content

Commit

Permalink
Rename data generator DOM
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Prescod committed May 30, 2020
1 parent fe5075e commit 844062f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion snowfakery/parse_recipe_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from yaml.composer import Composer
from yaml.constructor import SafeConstructor

from .data_generator_runtime_dom import (
from .data_generator_runtime_object_model import (
ObjectTemplate,
FieldFactory,
SimpleValue,
Expand Down
2 changes: 1 addition & 1 deletion snowfakery/template_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import snowfakery.data_generator_runtime # noqa
from snowfakery.plugins import SnowfakeryPlugin, PluginContext, lazy

FieldDefinition = "snowfakery.data_generator_runtime_dom.FieldDefinition"
FieldDefinition = "snowfakery.data_generator_runtime_object_model.FieldDefinition"
ObjectRow = "snowfakery.data_generator_runtime.ObjectRow"

fake = Faker()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data_generator_runtime_dom.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
from unittest import mock
from snowfakery.data_generator_runtime_dom import (
from snowfakery.data_generator_runtime_object_model import (
FieldFactory,
SimpleValue,
StructuredValue,
Expand Down

0 comments on commit 844062f

Please sign in to comment.