We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cca0d26 commit eeb3c20Copy full SHA for eeb3c20
tests/test_material.py
@@ -10,8 +10,8 @@ class TestMaterial(unittest.TestCase):
10
def setUp(self):
11
# Append current path to locate files
12
self.material = pywavefront.material.Material(fixture('material'))
13
- self.material.set_texture(fixture('4x4.png'), '')
14
- self.material.set_texture_ambient(fixture('4x4.png'), '')
+ self.material.set_texture(str(fixture('4x4.png')), '')
+ self.material.set_texture_ambient(str(fixture('4x4.png')), '')
15
16
def testSetTexture(self):
17
"""Running set_texture should set a texture."""
0 commit comments